No rick-roll

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

Co to jest No rick-roll?

No rick-roll to rozszerzenie Chrome opracowane przez level 8, a jego główną funkcją jest „This extension warns you every time you click on a link that could involve a rick-roll.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia No rick-roll

Pobierz pliki rozszerzeń No rick-roll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa No rick-roll No rick-roll
ID oljmncocnnpghpdnmdffphhcanpgmkok
Oficjalny URL https://chromewebstore.google.com/detail/no-rick-roll/oljmncocnnpghpdnmdffphhcanpgmkok
Opis This extension warns you every time you click on a link that could involve a rick-roll.
Rozmiar pliku 13.38 KB
Liczba instalacji 613
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-05-18
Data Publikacji 2021-01-18
Ocena 5.00/5 Łącznie 7 Oceny
Deweloper level 8
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}