No rick-roll

This extension warns you every time you click on a link that could involve a rick-roll.

O que é No rick-roll?

No rick-roll é uma extensão do Chrome desenvolvida por level 8, e sua principal característica é "This extension warns you every time you click on a link that could involve a rick-roll.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão No rick-roll

Baixe arquivos de extensão No rick-roll 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

                        This chrome extension makes it so that if you try to open a youtube video with is a rickroll you are going to be prompted and asked if you want to continue or cancel. If you install it you will decrease the chance of being rickrolled.

This is an open-source extension so if you want to contribute and make it beter you can do so. Here is the GitHub link: https://github.com/Tim194/No-rick-roll                    

Informações Básicas da Extensão

Nome No rick-roll No rick-roll
ID oljmncocnnpghpdnmdffphhcanpgmkok
URL Oficial https://chromewebstore.google.com/detail/no-rick-roll/oljmncocnnpghpdnmdffphhcanpgmkok
Descrição This extension warns you every time you click on a link that could involve a rick-roll.
Tamanho do Arquivo 13.38 KB
Contagem de Instalações 613
Versão Atual 1.0.0
Última Atualização 2021-05-18
Data de Publicação 2021-01-18
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor level 8
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No rick-roll",
    "version": "1.0.0",
    "description": "This extension warns you every time you click on a link that could involve a rick-roll.",
    "permissions": [
        "https:\/\/youtube.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}