Rotten Potatoes

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

Co je Rotten Potatoes?

Rotten Potatoes je rozšíření Chrome vyvinuté Liam HB, a jeho hlavní funkcí je „Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Rotten Potatoes

Stáhněte si soubory rozšíření Rotten Potatoes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
Oficiální URL https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Popis Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Velikost souboru 64.27 KB
Počet instalací 36
Aktuální Verze 3.1.1
Poslední Aktualizace 2022-03-11
Datum Vydání 2022-03-11
Vývojář Liam HB
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://rottenpotatoes.me
Podporované Jazyky 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"
    ]
}