Deadname Remover

An easy to use Google Chrome plugin to automatically remove and replace deadnames

什么是Deadname Remover?

Deadname Remover是由Ari Gibson开发的Chrome扩展程序,该扩展的主要功能是“An easy to use Google Chrome plugin to automatically remove and replace deadnames”。

扩展截图

screenshot

下载Deadname Remover扩展crx文件

下载Deadname Remover扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Once installed, a page should open where you can edit your name and deadname settings. 

To edit this later or to temporarily disable the plugin, click on the trans flag in the top right corner of your browser.                    

扩展基本信息

名称 Deadname Remover Deadname Remover
ID cceilgmnkeijahkehfcgfalepihfbcag
官方URL https://chromewebstore.google.com/detail/deadname-remover/cceilgmnkeijahkehfcgfalepihfbcag
简介 An easy to use Google Chrome plugin to automatically remove and replace deadnames
文件大小 31.7 KB
安装次数 38,733
当前版本 1.2.3
更新时间 2022-12-13
上架时间 2020-04-11
评分 4.56/5 共369次评分
开发者 Ari Gibson
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/arimgibson/Deadname-Remover
帮助页面URL https://github.com/arimgibson/Deadname-Remover
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Deadname Remover",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "An easy to use Google Chrome plugin to automatically remove and replace deadnames",
    "homepage_url": "https:\/\/github.com\/WillHayCode\/Deadname-Remover",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "popup\/options.html"
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Deadname Remover Options",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}