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": "TabNav - Navigate Tabs Like a Pro",
"description": "Fly through your tabs with history, search, and shortcuts.",
"version": "1.0.0",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"permissions": [
"tabs",
"storage",
"activeTab",
"clipboardWrite"
],
"commands": {
"navigate-back": {
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "Ctrl+Shift+Left"
},
"description": "Navigate to previous tab in history"
},
"navigate-forward": {
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "Ctrl+Shift+Right"
},
"description": "Navigate to next tab in history"
},
"open-search": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Ctrl+Shift+K"
},
"description": "Open tab search palette"
},
"copy-current-url": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Ctrl+Shift+U"
},
"description": "Copy current tab URL"
}
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Default Popup Title",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content-scripts\/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-scripts\/content.css"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}