Inspect and view changes in X to Y 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,
"default_locale": "en",
"name": "X to Y",
"description": "Replace words and links on the web",
"version": "1.3",
"icons": {
"48": "images/icon-48.png",
"96": "images/icon-96.png",
"128": "images/icon-128.png",
"256": "images/icon-256.png",
"512": "images/icon-512.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"<all_urls>"
]
}
],
"browser_action": {
"default_popup": "popup/index.html",
"default_icon": {
"16": "images/toolbar-icon-16.png",
"19": "images/toolbar-icon-19.png",
"32": "images/toolbar-icon-32.png",
"38": "images/toolbar-icon-38.png"
}
},
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "{461107ca-0610-462f-83f9-bc2152c1d1de}"
}
}
}