Inspect and view changes in Anything To Anything 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": "anything-to-anything",
"version": "0.0.18resigned1",
"description": "replace any term with anything, everywhere. cloud->butt millenial->snake peopel, blockchain->slow database",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage"
],
"icons": {
"64": "icon.png"
},
"browser_action": {
"browser_style": true,
"default_title": "Anything to Anything",
"default_icon": {
"64": "icon.png"
}
},
"applications": {
"gecko": {
"id": "anything_to_anything@snake.dog"
}
}
}