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": "Persistent SEO Sidebar",
"version": "3.1",
"description": "A Chrome extension with a persistent sidebar to display SEO information.",
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting",
"webRequest",
"declarativeContent",
"sidePanel",
"contextMenus",
"webNavigation"
],
"host_permissions": [
"*:\/\/*\/*"
],
"side_panel": {
"default_path": "sidebar.html"
},
"web_accessible_resources": [
{
"resources": [
"sidebar.html",
"settings.html",
"gsc.html"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icons\/sidebar-icon-16.png",
"48": "icons\/sidebar-icon-48.png",
"128": "icons\/sidebar-icon-128.png"
},
"default_title": "SEO Sidebar"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js",
"download_report.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons\/sidebar-icon-16.png",
"48": "icons\/sidebar-icon-48.png",
"128": "icons\/sidebar-icon-128.png"
},
"options_page": "settings.html"
}