This commit is contained in:
EnixCoda 2020-02-08 00:38:34 +08:00
parent c3baf8b1af
commit 1fb75e6d5d
No known key found for this signature in database
GPG key ID: 0C1A07377913A1DD
2 changed files with 22 additions and 8 deletions

View file

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

View file

@ -1,20 +1,34 @@
{
"manifest_version": 2,
"name": "Gitako - Github file tree",
"version": "0.8.6",
"version": "0.8.7",
"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/*"],
"permissions": [
"storage",
"*://*.github.com/*",
"*://*.sentry.io/*"
],
"web_accessible_resources": [
"icons/vscode/*"
],
"content_scripts": [
{
"matches": ["https://github.com/*"],
"css": ["content.css"],
"js": ["firefox-shim.js", "browser-polyfill.js", "content.js"]
"matches": [
"https://github.com/*"
],
"css": [
"content.css"
],
"js": [
"firefox-shim.js",
"browser-polyfill.js",
"content.js"
]
}
]
}
}