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",
"background": {
"persistent": true,
"scripts": [
"js\/background.js"
]
},
"options_page": "options.html",
"browser_action": {
"default_icon": "icons\/icon32.png",
"default_popup": "popup.html",
"default_title": "SEO helper",
"name": "SEO helper"
},
"content_scripts": [
{
"js": [
"js\/content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"description": "helps with tasks like seeing if a page is indexable",
"manifest_version": 2,
"name": "SEO helper",
"permissions": [
"storage",
"webRequest",
"webNavigation",
"tabs",
"<all_urls>"
],
"version": "2.0"
}