No rick-roll

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

Vad är No rick-roll?

No rick-roll är en Chrome-tillägg utvecklad av level 8, och dess huvudfunktion är "This extension warns you every time you click on a link that could involve a rick-roll.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner No rick-roll-förlängningens CRX-fil

Ladda ner No rick-roll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn No rick-roll No rick-roll
ID oljmncocnnpghpdnmdffphhcanpgmkok
Officiell webbadress https://chromewebstore.google.com/detail/no-rick-roll/oljmncocnnpghpdnmdffphhcanpgmkok
Beskrivning This extension warns you every time you click on a link that could involve a rick-roll.
Filstorlek 13.38 KB
Antal Installationer 613
Aktuell Version 1.0.0
Senast Uppdaterad 2021-05-18
Publiceringsdatum 2021-01-18
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare level 8
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}