Rotten Potatoes

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

Rotten Potatoes là gì?

Rotten Potatoes là một tiện ích mở rộng Chrome được phát triển bởi Liam HB, và tính năng chính của nó là "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Rotten Potatoes

Tải xuống các tệp mở rộng Rotten Potatoes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
URL Chính Thức https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Mô tả Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Kích Thước Tệp 64.27 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 3.1.1
Cập Nhật Lần Cuối 2022-03-11
Ngày Phát Hành 2022-03-11
Nhà Phát Triển Liam HB
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://rottenpotatoes.me
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}