An easy to use browser plugin to automatically remove and replace deadnames
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": "Deadname Remover",
"description": "An easy to use browser plugin to automatically remove and replace deadnames",
"version": "2.0.4",
"icons": {
"16": "icon/trans16.png",
"32": "icon/trans32.png",
"48": "icon/trans48.png",
"128": "icon/trans128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "58.0"
}
},
"permissions": [
"storage"
],
"author": "Ari Gibson",
"homepage_url": "https://github.com/arimgibson/Deadname-Remover",
"offline_enabled": true,
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Deadname Remover Popup Settings",
"default_popup": "popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"content-scripts/content.js"
]
}
]
}