Inspect and view changes in SepiaToner 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": "SepiaToner",
"version": "1.0.0",
"description": "Adds sepia tone to all web pages to give a old style look and feel",
"icons": {
"256": "icons/icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/content_script.js"
]
}
],
"browser_action": {
"browser_style": true,
"default_icon": {
"256": "icons/icon.png"
},
"default_title": "SepiaToner",
"default_popup": "/popup.html"
},
"permissions": [
"storage"
]
}