This commit is contained in:
EnixCoda 2020-03-07 19:23:58 +08:00
parent 40fb431999
commit 1d0f2d93bf
No known key found for this signature in database
GPG key ID: 0C1A07377913A1DD
2 changed files with 20 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{
"name": "gitako",
"version": "0.8.10",
"version": "1.0.0",
"description": "The missing part of GitHub.",
"repository": "https://github.com/EnixCoda/Gitako",
"author": "EnixCoda",

View file

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Gitako - Github file tree",
"version": "0.8.10",
"version": "1.0.0",
"description": "The missing part of GitHub.",
"author": "EnixCoda",
"icons": {
@ -10,12 +10,25 @@
"512": "icons/Gitako-512.png"
},
"homepage_url": "https://github.com/EnixCoda/Gitako",
"permissions": ["storage", "*://*.github.com/*", "*://*.sentry.io/*"],
"web_accessible_resources": ["icons/vscode/*", "content.css"],
"permissions": [
"storage",
"*://*.github.com/*",
"*://*.sentry.io/*"
],
"web_accessible_resources": [
"icons/vscode/*",
"content.css"
],
"content_scripts": [
{
"matches": ["https://github.com/*"],
"js": ["firefox-shim.js", "browser-polyfill.js", "content.js"]
"matches": [
"https://github.com/*"
],
"js": [
"firefox-shim.js",
"browser-polyfill.js",
"content.js"
]
}
]
}
}