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
官方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"
    ]
}