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
Eメール [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"
    ]
}