tridactyl/addon/manifest.json

43 lines
728 B
JSON
Raw Normal View History

2017-02-12 15:26:16 +00:00
{
"manifest_version": 2,
"name": "Tridactyl",
"version": "1.0",
"background" : {
2017-03-02 16:20:59 +00:00
"scripts": ["main.js", "exStrParser.js", "funcParser.js"]
2017-02-12 15:26:16 +00:00
},
2017-02-14 15:41:53 +00:00
"content_scripts": [
{
"matches":["<all_urls>"],
2017-02-28 13:13:28 +00:00
"js":["content.js", "link_hinting.js"]
2017-02-14 15:41:53 +00:00
}
],
2017-03-02 16:20:59 +00:00
"permissions": [
"activeTab",
"alarms",
"bookmarks",
"contextMenus",
"cookies",
"downloads",
"downloads.open",
"history",
"identity",
"idle",
"management",
"nativeMessaging",
"notifications",
"sessions",
"storage",
"tabs",
"topSites",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
]
2017-02-12 15:26:16 +00:00
}