GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

O que é GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY é uma extensão do Chrome desenvolvida por Declan Hoare, e sua principal característica é "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GIVE US ALL YOUR MONEY

Baixe arquivos de extensão GIVE US ALL YOUR MONEY no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
URL Oficial https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
Descrição Replaces brand tweets with "GIVE US ALL YOUR MONEY"
Tamanho do Arquivo 41.76 KB
Contagem de Instalações 11
Versão Atual 2
Última Atualização 2019-04-13
Data de Publicação 2019-04-13
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Declan Hoare
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/DeclanHoare/giveusallyourmoney
URL da Página de Ajuda https://github.com/DeclanHoare/giveusallyourmoney/issues
Idiomas Suportados 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
    }
}