Rotten Potatoes

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

Was ist Rotten Potatoes?

Rotten Potatoes ist eine Chrome-Erweiterung, die von Liam HB entwickelt wurde, und ihr Hauptmerkmal ist "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Erweiterungsscreenshots

screenshot

Rotten Potatoes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Rotten Potatoes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
Offizielle URL https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Beschreibung Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Dateigröße 64.27 KB
Installationsanzahl 36
Aktuelle Version 3.1.1
Letztes Update 2022-03-11
Veröffentlichungsdatum 2022-03-11
Entwickler Liam HB
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://rottenpotatoes.me
Unterstützte Sprachen 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"
    ]
}