Inspect and view changes in Style Detector source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "detector",
"description": "Inspect and change styles (color, font, etc..) of any DOM element with one click..",
"version": "2.0.3",
"icons": {
"32": "icons/icon32.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png"
},
"browser_action": {
"default_title": "detector",
"default_popup": "popup.html",
"browser_style": true
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"css": [
"content.css"
],
"js": [
"content.js"
]
}
]
}