Inspect and view changes in Website Theme Sync 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
{
"name": "Website Theme Sync",
"manifest_version": 2,
"version": "0.2",
"description": "Keeps the web page color theme settings in sync with system color theme.",
"icons": {
"200": "icons/200x200.png",
"400": "icons/400x400.png",
"600": "icons/600x600.png"
},
"content_scripts": [
{
"matches": [
"https://*.slack.com/*"
],
"js": [
"slack.js"
]
},
{
"matches": [
"https://*.coderslang.com/*"
],
"js": [
"coderslang.js"
]
},
{
"matches": [
"https://*.twitter.com/*"
],
"js": [
"twitter.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"update_url": "https://raw.githubusercontent.com/ryaposov/website-theme-sync/main/dist/updates.json"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}