Rotten Potatoes

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

Qu'est-ce que Rotten Potatoes ?

Rotten Potatoes est une extension Chrome développée par Liam HB, et sa fonction principale est "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Rotten Potatoes

Téléchargez les fichiers d'extension Rotten Potatoes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
URL Officiel https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Description Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Taille du Fichier 64.27 KB
Nombre d'Installations 36
Version Actuelle 3.1.1
Dernière Mise à Jour 2022-03-11
Date de Publication 2022-03-11
Développeur Liam HB
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://rottenpotatoes.me
Langues Prises en Charge 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"
    ]
}