Control your tabs with tiles - useful for large monitors and full screen (F11) browsing.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"background": {
"service_worker": "tabtiles-service-worker.js"
},
"content_scripts": [
{
"js": [
"tabtiles-default.js",
"utils.js",
"tabtiles-content-script.js"
],
"run_at": "document_end",
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"tabtiles.css"
]
}
],
"version": "0.9.3",
"minimum_chrome_version": "88",
"name": "tabtiles",
"options_page": "tabtiles-options.html",
"description": "Control your tabs with tiles - useful for large monitors and full screen (F11) browsing.",
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"permissions": [
"favicon",
"tabs",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": [
"tabtiles.css",
"icons/back.svg",
"icons/forward.svg",
"icons/address.svg",
"icons/home.svg",
"icons/newtab.svg",
"icons/go.svg",
"icons/cancel.svg",
"icons/history.svg",
"icons/closetab_redwhite.svg",
"icons/closetab_gray.svg",
"icons/closetab_black.svg"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"/_favicon/*"
],
"matches": [
"<all_urls>"
]
}
]
}