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
官方網址 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"
        }
    }
}