Rotten Potatoes

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

Cos'è Rotten Potatoes?

Rotten Potatoes è un'estensione di Chrome sviluppata da Liam HB, e la sua funzione principale è "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Rotten Potatoes

Scarica i file di estensione Rotten Potatoes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
URL Ufficiale https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Descrizione Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Dimensione del File 64.27 KB
Conteggio Installazioni 36
Versione Corrente 3.1.1
Ultimo Aggiornamento 2022-03-11
Data di Pubblicazione 2022-03-11
Sviluppatore Liam HB
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://rottenpotatoes.me
Lingue Supportate 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"
    ]
}