GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

Was ist GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY ist eine Chrome-Erweiterung, die von Declan Hoare entwickelt wurde, und ihr Hauptmerkmal ist "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".

Erweiterungsscreenshots

screenshot
screenshot

GIVE US ALL YOUR MONEY-Erweiterungs-CRX-Datei herunterladen

Laden Sie GIVE US ALL YOUR MONEY-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
Offizielle URL https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
Beschreibung Replaces brand tweets with "GIVE US ALL YOUR MONEY"
Dateigröße 41.76 KB
Installationsanzahl 11
Aktuelle Version 2
Letztes Update 2019-04-13
Veröffentlichungsdatum 2019-04-13
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Declan Hoare
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/DeclanHoare/giveusallyourmoney
Hilfeseite URL https://github.com/DeclanHoare/giveusallyourmoney/issues
Unterstützte Sprachen 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
    }
}