GIVE US ALL YOUR MONEY

Replaces brand tweets with "GIVE US ALL YOUR MONEY"

Что такое GIVE US ALL YOUR MONEY?

GIVE US ALL YOUR MONEY - это расширение Chrome, разработанное Declan Hoare, и его основная функция - "Replaces brand tweets with "GIVE US ALL YOUR MONEY"".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GIVE US ALL YOUR MONEY

Скачайте файлы расширений GIVE US ALL YOUR MONEY в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название GIVE US ALL YOUR MONEY GIVE US ALL YOUR MONEY
ID hojnhfncblgdolbnipododafipdkklej
Официальный URL https://chromewebstore.google.com/detail/give-us-all-your-money/hojnhfncblgdolbnipododafipdkklej
Описание Replaces brand tweets with "GIVE US ALL YOUR MONEY"
Размер файла 41.76 KB
Количество установок 11
Текущая Версия 2
Последнее Обновление 2019-04-13
Дата публикации 2019-04-13
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Declan Hoare
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/DeclanHoare/giveusallyourmoney
URL страницы помощи https://github.com/DeclanHoare/giveusallyourmoney/issues
Поддерживаемые языки 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
    }
}