This commit is contained in:
EnixCoda 2020-02-16 00:15:35 +08:00
parent 2971a1d53b
commit 89abe7e233
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.8",
"version": "0.8.9",
"description": "The missing part of GitHub.",
"repository": "https://github.com/EnixCoda/Gitako",
"author": "EnixCoda",

View file

@ -1,19 +1,32 @@
{
"manifest_version": 2,
"name": "Gitako - Github file tree",
"version": "0.8.8",
"version": "0.8.9",
"description": "The missing part of GitHub.",
"author": "EnixCoda",
"icons": {
"128": "icons/Gitako-128x128.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"
]
}
]
}
}