Rotten Potatoes

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

Rotten Potatoes क्या है?

Rotten Potatoes Liam HB द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rotten Potatoes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
आधिकारिक URL https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
विवरण Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
फ़ाइल का आकार 64.27 KB
स्थापना संख्या 36
वर्तमान संस्करण 3.1.1
अंतिम अपडेट 2022-03-11
प्रकाशन तिथि 2022-03-11
डेवलपर Liam HB
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://rottenpotatoes.me
समर्थित भाषाएँ 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"
    ]
}