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",
"name": "Floating Table of Contents",
"description": "Explore documents with ease and float your ToC anywhere!",
"version": "1.3.0",
"manifest_version": 3,
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"action": {
"default_icon": {
"16": "images\/table-16.png",
"32": "images\/table-32.png",
"48": "images\/table-48.png",
"128": "images\/table-128.png"
}
},
"content_scripts": [
{
"js": [
"contentScript\/index.js"
],
"css": [
"contentScript\/index.css"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/localhost\/*"
]
}
],
"background": {
"service_worker": "background\/index.js",
"type": "module"
},
"icons": {
"16": "images\/table-16.png",
"32": "images\/table-32.png",
"48": "images\/table-48.png",
"128": "images\/table-128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
},
"description": "Floating Table of Contents"
}
}
}