Rotten Potatoes

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

Hvad er Rotten Potatoes?

Rotten Potatoes er en Chrome-udvidelse udviklet af Liam HB, og dens hovedfunktion er "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Udvidelsesskærmbilleder

screenshot

Download Rotten Potatoes-udvidelses-CRX-fil

Download Rotten Potatoes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
Officiel URL https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Beskrivelse Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Filstørrelse 64.27 KB
Antal Installationer 36
Nuværende Version 3.1.1
Senest Opdateret 2022-03-11
Udgivelsesdato 2022-03-11
Udvikler Liam HB
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://rottenpotatoes.me
Understøttede Sprog 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"
    ]
}