TabFS/extension/manifest.json
Omar Rizwan 1c99150fdd extension: add embed-files.js. can drag files in and they appear
- they don't do anything yet other than appear
- no icons yet
- sample files still in there (and they appear on every page)
- they should appear at drop mouse pos but don't
2021-06-23 21:34:56 -07:00

31 lines
638 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
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["embed-files.js"]
}],
"browser_specific_settings": {
"gecko": {
"id": "tabfs@rsnous.com"
}
}
}