De-Trumper

Replaces mentions of Donald Trump with the text of your choosing.

De-Trumperคืออะไร?

De-Trumper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย subyraman และคุณลักษณะหลักของมันคือ "Replaces mentions of Donald Trump with the text of your choosing."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย De-Trumper

ดาวน์โหลดไฟล์ส่วนขยาย De-Trumper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Tired of seeing mentions of Donald Trump? Or maybe you love seeing Donald Trump, and want to make him more awesome?

Replace mentions of Donald Trump with whatever text you choose. The default is "Cutie Toupeepants" but feel free to change it to whatever else you'd like in the options. Possibilities include:

- "please stop talking about this crazy man"
- "Mr. Cuddlebunches"
- "(╯°□°)╯︵ ┻━┻    ¯\_(ツ)_/¯"

The code is built on a fork of the wonderful Downworthy extension. Many thanks to everyone who contributed to that.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ De-Trumper De-Trumper
ID kglbhgihidejfkdlkoclnllbanbblbjb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/de-trumper/kglbhgihidejfkdlkoclnllbanbblbjb
คำอธิบาย Replaces mentions of Donald Trump with the text of your choosing.
ขนาดไฟล์ 24.19 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2015-12-27
วันที่เผยแพร่ 2015-12-27
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา subyraman
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "De-Trumper",
    "version": "0.0.1",
    "description": "Replaces mentions of Donald Trump with the text of your choosing.",
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19-on.png",
        "default_title": "Toggle De-Trumper"
    },
    "content_security_policy": "default-src 'none'; script-src 'self'",
    "options_page": "options.html"
}