GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

Co to jest GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY to rozszerzenie Chrome opracowane przez Declan Hoare, a jego główną funkcją jest „Replaces brand tweets with "GIVE US ALL YOUR MONEY"”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GIVE US ALL YOUR MONEY

Pobierz pliki rozszerzeń GIVE US ALL YOUR MONEY w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
Oficjalny URL https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
Opis Replaces brand tweets with "GIVE US ALL YOUR MONEY"
Rozmiar pliku 41.76 KB
Liczba instalacji 11
Aktualna Wersja 2
Ostatnia Aktualizacja 2019-04-13
Data Publikacji 2019-04-13
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Declan Hoare
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/DeclanHoare/giveusallyourmoney
Adres URL Strony Pomocy https://github.com/DeclanHoare/giveusallyourmoney/issues
Obsługiwane Języki 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
    }
}