-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 1 KB
/
manifest.json
File metadata and controls
43 lines (43 loc) · 1 KB
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
{
"name": "Refined Bitbucket server",
"version": "1.3.0",
"description": "Browser extension that simplifies and adds useful features to bitbucket server UI",
"homepage_url": "https://github.com/joancaron/refined-bitbucket-server",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "{e05cddcf-81b2-4f87-899c-5d87fdf17e14}",
"strict_min_version": "61.0"
}
},
"permissions": [
"storage",
"clipboardWrite",
"contextMenus",
"activeTab",
"*://*/*"
],
"browser_action": {
"default_icon": "icon.png"
},
"icons": {
"128": "icon.png"
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"background": {
"scripts": ["browser-polyfill.min.js", "background.js"],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": ["*://*/*"],
"css": ["content.css"],
"js": ["browser-polyfill.min.js", "content.js"]
}
],
"web_accessible_resources": ["content/*"]
}