Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Flow \u2014 For Scattered Brains",
"version": "1.0.2",
"description": "For the compulsive tab-switchers who never finish what they start.",
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"commands": {
"toggle-lock": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Toggle tab lock on\/off"
}
},
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"modal.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"modal.bundle.js",
"images\/*",
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
]
}