forked from softvar/enhanced-github
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
36 lines (36 loc) · 1.12 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
{
"name": "turbo-src",
"short_name": "turbo-src",
"version": "0.0.1",
"manifest_version": 2,
"description": "Vote on pull requests.",
"homepage_url": "https://github.com/softvar/enhanced-github",
"author": "turbo-src",
"icons": {
"16": "icons/turbo-src16.png",
"48": "icons/turbo-src48.png",
"128": "icons/turbo-src128.png"
},
"browser_action": {
"default_icon": "icons/turbo-src48.png",
"default_popup": "popup.html",
"default_title": "turbo-src"
},
"permissions": ["*://*.github.com/*", "https://turbosrc-marialis.dev/*", "https://turbosrc-auth.fly.dev/*", "http://localhost:5001/*", "storage", "webRequest", "webNavigation", "activeTab"],
"content_scripts": [
{
"matches": ["*://*.github.com/*", "https://turbosrc-marialis.dev/*", "https://turbosrc-auth.fly.dev/*"],
"css": ["./modal.css"],
"js": ["inject.bundle.js"]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": ["background.js"],
"persistent": true
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
}