forked from gapop/pinboard-webextension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
53 lines (53 loc) · 1.37 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
{
"manifest_version": 2,
"name": "Pinboard WebExtension",
"short_name": "Pinboard",
"version": "1.30",
"description": "Easily add links to Pinboard. A remake of the official Pinboard extension.",
"author": "George Pop",
"homepage_url": "https://github.com/gapop/pinboard-webextension",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"48": "pinboard_icon_48.png",
"96": "pinboard_icon_96.png",
"200": "pinboard_icon.png"
},
"permissions": [
"*://pinboard.in/*",
"tabs",
"activeTab",
"notifications",
"storage",
"contextMenus"
],
"browser_action": {
"default_icon": {
"16": "toolbar_icon_16.png",
"48": "toolbar_icon_48.png",
"96": "toolbar_icon_96.png"
},
"default_title": "Add to Pinboard",
"default_popup": "popup_menu.html",
"browser_style": true
},
"background": {
"scripts": ["main.js"]
},
"content_scripts": [
{
"matches": [
"https://pinboard.in/add",
"https://pinboard.in/add*later=yes*"
],
"js": ["link_saved.js"]
}
],
"options_ui": {
"page": "preferences.html",
"browser_style": true
}
}