Rotten Potatoes

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

O que é Rotten Potatoes?

Rotten Potatoes é uma extensão do Chrome desenvolvida por Liam HB, e sua principal característica é "Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Rotten Potatoes

Baixe arquivos de extensão Rotten Potatoes no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Rotten Potatoes Rotten Potatoes
ID dpoadbcdpdgdogplijkpkepdecgocaom
URL Oficial https://chromewebstore.google.com/detail/rotten-potatoes/dpoadbcdpdgdogplijkpkepdecgocaom
Descrição Rotten Potatoes replaces existing links on web pages with a Rickroll. You can customize the redirect URL.
Tamanho do Arquivo 64.27 KB
Contagem de Instalações 36
Versão Atual 3.1.1
Última Atualização 2022-03-11
Data de Publicação 2022-03-11
Desenvolvedor Liam HB
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://rottenpotatoes.me
Idiomas Suportados 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"
    ]
}