Leetcode Click to Hide Difficulty

This extension allows user to hide difficulty level in leetcode.

Vad är Leetcode Click to Hide Difficulty?

Leetcode Click to Hide Difficulty är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension allows user to hide difficulty level in leetcode.".

Ladda ner Leetcode Click to Hide Difficulty-förlängningens CRX-fil

Ladda ner Leetcode Click to Hide Difficulty-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 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.                    

Grundläggande Information om Tillägg

Namn Leetcode Click to Hide Difficulty Leetcode Click to Hide Difficulty
ID iphbgefdkepijabekiohipokmoceddfn
Officiell webbadress https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn
Beskrivning This extension allows user to hide difficulty level in leetcode.
Filstorlek 5.46 KB
Antal Installationer 20
Aktuell Version 1.1
Senast Uppdaterad 2017-12-25
Publiceringsdatum 2017-12-25
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}