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開發的Chrome擴展程式,該擴展的主要功能是“Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.”。

擴展截圖

screenshot

下載Rotten Potatoes擴展crx文件

下載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
官方網址 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"
    ]
}