GitCodeTree/src/config/chrome/manifest.json

26 lines
490 B
JSON
Executable File

{
"name": "Octotree",
"version": "$VERSION",
"manifest_version": 2,
"author": "Buu Nguyen",
"description": "Code tree for GitHub",
"homepage_url": "https://github.com/buunguyen/octotree",
"icons": {
"128": "icons/icon128.png"
},
"permissions": [
"https://bitbucket.org/*",
"https://github.com/*",
"storage"
],
"optional_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
}