Rotten Potatoes

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

ما هو Rotten Potatoes؟

Rotten Potatoes هو إضافة Chrome تم تطويرها بواسطة Liam HB، والميزة الرئيسية لها هي "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Rotten Potatoes

قم بتنزيل ملفات الامتداد Rotten Potatoes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}