Rotten Potatoes

Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.

Что такое Rotten Potatoes?

Rotten Potatoes - это расширение Chrome, разработанное Liam HB, и его основная функция - "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

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

screenshot

Скачать файл CRX расширения Rotten Potatoes

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

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

                        Looking for a way to Rickroll your friends on April 1st? Look no further than the Rotten Potatoes extension! This extension replaces all links on every website with a Rickroll or your custom URL on April Fools' Day with the press of a button. Open-source code available http://rottenpotatoes.me.                    

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

Название Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
Официальный URL https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Описание Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Размер файла 64.27 KB
Количество установок 36
Текущая Версия 3.1.1
Последнее Обновление 2022-03-11
Дата публикации 2022-03-11
Разработчик Liam HB
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://rottenpotatoes.me
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rotten Potatoes",
    "description": "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.",
    "version": "3.1.1",
    "author": "Liam Hornschild-Bear",
    "action": {
        "default_icon": "potato.png",
        "default_title": "Rotten Potatoes"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js",
                "jquery.min.js"
            ],
            "exclude_globs": [
                "*options*"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}