Brandacted

This extension redacts brand names from most web content, unless I messed something up.

Brandactedคืออะไร?

Brandacted เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joeveix และคุณลักษณะหลักของมันคือ "This extension redacts brand names from most web content, unless I messed something up."

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

screenshot
screenshot

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

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

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

                        Brandacted takes a list of ~200 brands and replaces them with █████████████ because ██████████ and ███████████████████████████.                    

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

ชื่อ Brandacted Brandacted
ID oaeccdidhldlcoepbmaohcdflaeaokjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/brandacted/oaeccdidhldlcoepbmaohcdflaeaokjh
คำอธิบาย This extension redacts brand names from most web content, unless I messed something up.
ขนาดไฟล์ 23.32 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-06-18
วันที่เผยแพร่ 2015-06-18
ผู้พัฒนา joeveix
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.twitter.com/joeveix
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Brandacted",
    "description": "This extension redacts brand names from most web content, unless I messed something up.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Click here to redact brands."
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}