GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

Cos'è GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY è un'estensione di Chrome sviluppata da Declan Hoare, e la sua funzione principale è "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GIVE US ALL YOUR MONEY

Scarica i file di estensione GIVE US ALL YOUR MONEY in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
URL Ufficiale https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
Descrizione Replaces brand tweets with "GIVE US ALL YOUR MONEY"
Dimensione del File 41.76 KB
Conteggio Installazioni 11
Versione Corrente 2
Ultimo Aggiornamento 2019-04-13
Data di Pubblicazione 2019-04-13
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Declan Hoare
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/DeclanHoare/giveusallyourmoney
URL della Pagina di Aiuto https://github.com/DeclanHoare/giveusallyourmoney/issues
Lingue Supportate 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
    }
}