forked from noitcudni/google-search-console-bulk-url-removal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (29 loc) · 785 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name" : "WebMaster Tools - Bulk URL removal",
"version" : "0.2",
"manifest_version": 2,
"description": "",
"content_scripts" : [
{
"matches" : ["https://www.google.com/webmasters/tools/url-removal*"],
"js" : ["jquery-1.7.1.min.js", "bulk_url_removal.js"]
},
{
"matches" : ["https://www.google.com/webmasters/tools/removals-request*"],
"js" : ["jquery-1.7.1.min.js", "removals_request.js"]
},
{
"matches" : ["http://localhost:8000/test.html",
"https://www.google.com/webmasters/tools/removals-create-ac*"],
"js" : ["jquery-1.7.1.min.js", "exceed_quota.js"]
}
],
"background": {
"scripts": [
"bg.js"
]
},
"permissions": [
"https://www.google.com/webmasters/*"
]
}