This repository has been archived by the owner on Jan 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (48 loc) · 1.89 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"manifest_version": 2
, "name": "Blinds -- Hide Unwanted Pins on Pinterest"
, "description": "This extension hides unwanted pins on Pinterest based on the words you provide it with."
, "homepage_url": "http://potherca.github.io/Pinterest-HidePins/"
, "version": "0.0.0.1"
, "permissions": [
"*://*.pinterest.com/*"
, "*://pinterest.com/*"
//, "*://*.local/*Pinterest*"
, "storage" /* To save user's options */
, "webRequest" /* To add Blinds to AJAX calls*/
, "tabs" /* @TODO: We need to get rid of this permission! */
]
, "background" : {
"scripts": ["ChromeExtension/background.js"]
/*
We can't make this an EventPage yet as webRequest is only allowed with
BackgroundPages and the alternative, declarativeWebRequest, are not yet available
in the stable branch of Chrome.
, "persistent": false
*/
}
, "options_page": "Generic/Options/Pinterest-HidePins-Options.html"
, "page_action" : {
"default_icon" : "Generic/Images/blinds-logo-19x19-transparent.png"
, "default_title": "Blinds -- Hide Unwanted Pins on Pinterest -- Click for options" /* Show in tooltip */
, "default_popup": "Generic/Options/Pinterest-HidePins-Options.html" /* Shown on click */
}
, "content_scripts" : [{
"matches" : [
"*://*.pinterest.com/*"
, "*://pinterest.com/*"
//, "*://*.local/*Pinterest*"
]
, "js" : [
"Generic/jquery-1.9.1.js"
, "Generic/PinterestHidePins.js"
]
, "css": ["Generic/PinterestHidePins.css"]
, "run_at" : "document_idle"
, "all_frames" : false
}]
, "icons" : {
"48" : "Generic/Images/blinds-logo-48x48-transparent.png"
, "128" : "Generic/Images/blinds-logo-128x128-transparent.png"
}
}