GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

什麼是GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY是由Declan Hoare開發的Chrome擴展程式,該擴展的主要功能是“Replaces brand tweets with "GIVE US ALL YOUR MONEY"”。

擴展截圖

screenshot
screenshot

下載GIVE US ALL YOUR MONEY擴展crx文件

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