No rick-roll

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

ما هو No rick-roll؟

No rick-roll هو إضافة Chrome تم تطويرها بواسطة level 8، والميزة الرئيسية لها هي "This extension warns you every time you click on a link that could involve a rick-roll.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة No rick-roll

قم بتنزيل ملفات الامتداد No rick-roll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم No rick-roll No rick-roll
ID oljmncocnnpghpdnmdffphhcanpgmkok
عنوان URL الرسمي https://chromewebstore.google.com/detail/no-rick-roll/oljmncocnnpghpdnmdffphhcanpgmkok
الوصف This extension warns you every time you click on a link that could involve a rick-roll.
حجم الملف 13.38 KB
عدد التثبيتات 613
النسخة الحالية 1.0.0
آخر تحديث 2021-05-18
تاريخ النشر 2021-01-18
تقييم 5.00/5 مجموع تقييمات 7
المطور level 8
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
        }
    ]
}