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
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rotten Potatoes

ดาวน์โหลดไฟล์ส่วนขยาย Rotten Potatoes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
อีเมล hello@edscribe.org
ประเภทการชำระเงิน 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"
    ]
}