Leetcode Click to Hide Difficulty

This extension allows user to hide difficulty level in leetcode.

ما هو Leetcode Click to Hide Difficulty؟

Leetcode Click to Hide Difficulty هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "This extension allows user to hide difficulty level in leetcode.".

تحميل ملف CRX للإضافة Leetcode Click to Hide Difficulty

قم بتنزيل ملفات الامتداد Leetcode Click to Hide Difficulty بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension enable you to hide difficulty level in Leetcode. 
Just install the extension, and click on it whenever you are on Leetcode, and the difficulty level will disappear.                    

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

الاسم Leetcode Click to Hide Difficulty Leetcode Click to Hide Difficulty
ID iphbgefdkepijabekiohipokmoceddfn
عنوان URL الرسمي https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn
الوصف This extension allows user to hide difficulty level in leetcode.
حجم الملف 5.46 KB
عدد التثبيتات 20
النسخة الحالية 1.1
آخر تحديث 2017-12-25
تاريخ النشر 2017-12-25
تقييم 3.00/5 مجموع تقييمات 2
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Leetcode Click to Hide Difficulty",
    "description": "This extension allows user to hide difficulty level in leetcode.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/www.leetcode.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.leetcode.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ]
}