Rotten Potatoes

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

What is Rotten Potatoes?

Rotten Potatoes is a Chrome extension developed by Liam HB, and its main feature is "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Extension Screenshots

screenshot

Download Rotten Potatoes Extension CRX File

Download Rotten Potatoes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
Official URL 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.
File Size 64.27 KB
Installation Count 36
Current Version 3.1.1
Last Updated 2022-03-11
Publish Date 2022-03-11
Developer Liam HB
Email [email protected]
Payment Type free
Extension Website http://rottenpotatoes.me
Supported Languages 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"
    ]
}