TabFS/extension/manifest.json
Omar Rizwan 837c0ea3ad extension: defineFile -> routeWithContents. hot reload stuff.
add runtime/background.js route.
2021-04-20 05:07:22 -07:00

27 lines
551 B
JSON

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