Deadname Remover

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

Deadname Removerคืออะไร?

Deadname Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ari Gibson และคุณลักษณะหลักของมันคือ "An easy to use Google Chrome plugin to automatically remove and replace deadnames"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Deadname Remover

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}