Inspect and view changes in New Window CSS Editor 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": "Inline CSS Editor",
"version": "1.1",
"description": "Edit CSS in a separate window and apply changes inline. Now with autocomplete!",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"icons": {
"128": "assets/icon128.jpg"
},
"browser_action": {
"default_title": "CSS Editor",
"default_icon": {
"128": "assets/icon128.jpg"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{e054a8cc-5c3d-486b-bc63-2a30c13c5ef7}"
}
}
}