Inspect and view changes in Waterfall Bucket 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": "Waterfall Bucket",
"version": "1.4",
"description": "Extra tools for waterfall.social",
"content_scripts": [
{
"matches": [
"*://waterfall.social/*"
],
"js": [
"autotag.js"
]
}
],
"options_ui": {
"page": "options.html"
},
"browser_action": {
"default_icon": "icon.svg",
"default_title": "Waterfall Autotag",
"default_popup": "options.html"
},
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "autotag@beefox.xyz"
}
},
"icons": {
"48": "icon.svg",
"96": "icon.svg"
}
}