TabFS/extension/manifest.json

27 lines
551 B
JSON
Raw Permalink Normal View History

2018-11-11 14:32:44 +01:00
{
"manifest_version": 2,
"name": "TabFS",
"description": "Mount your browser tabs as a filesystem",
2018-11-11 14:32:44 +01:00
"version": "1.0",
"permissions": [
"tabs", "tabCapture", "debugger", "nativeMessaging", "management",
"unlimitedStorage",
"<all_urls>"
],
2018-11-12 01:31:02 +01:00
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
2018-11-11 14:32:44 +01:00
"background": {
"scripts": ["vendor/browser-polyfill.js", "background.js"],
2018-11-11 14:32:44 +01:00
"persistent": true
},
"browser_specific_settings": {
"gecko": {
"id": "tabfs@rsnous.com"
}
2018-11-11 14:32:44 +01:00
}
}