GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

GIVE US ALL YOUR MONEYคืออะไร?

GIVE US ALL YOUR MONEY เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Declan Hoare และคุณลักษณะหลักของมันคือ "Replaces brand tweets with "GIVE US ALL YOUR MONEY""

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GIVE US ALL YOUR MONEY

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

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

                        Inspired by viral Content from Wizz Wizz, this browser extension will detect tweets from known brand accounts on Twitter, and replace the text with "GIVE US ALL YOUR MONEY".

* Compatible with both Twitter designs (legacy and mobile)
* Can be toggled on-the-fly by clicking the extension icon
* Public Domain                    

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

ชื่อ GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
คำอธิบาย Replaces brand tweets with "GIVE US ALL YOUR MONEY"
ขนาดไฟล์ 41.76 KB
จำนวนการติดตั้ง 11
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2019-04-13
วันที่เผยแพร่ 2019-04-13
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Declan Hoare
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/DeclanHoare/giveusallyourmoney
URL หน้าช่วยเหลือ https://github.com/DeclanHoare/giveusallyourmoney/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GIVE US ALL YOUR MONEY",
    "author": "Declan Hoare",
    "description": "Replaces brand tweets with \"GIVE US ALL YOUR MONEY\"",
    "version": "2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "permissions": [
        "https:\/\/*.twitter.com\/",
        "http:\/\/*.twitter.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "http:\/\/*.twitter.com\/*"
            ],
            "js": [
                "scripts\/giveusallyourmoney.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/brands.txt"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    }
}