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
公式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
Eメール [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
    }
}