GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

Wat is GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY is een Chrome-extensie ontwikkeld door Declan Hoare, en de belangrijkste functie is "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie GIVE US ALL YOUR MONEY

Download GIVE US ALL YOUR MONEY-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
Officiële URL https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
Beschrijving Replaces brand tweets with "GIVE US ALL YOUR MONEY"
Bestandsgrootte 41.76 KB
Aantal Installaties 11
Huidige Versie 2
Laatst Bijgewerkt 2019-04-13
Publicatiedatum 2019-04-13
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Declan Hoare
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/DeclanHoare/giveusallyourmoney
Help Pagina-URL https://github.com/DeclanHoare/giveusallyourmoney/issues
Ondersteunde Talen 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
    }
}