Leetcode Click to Hide Difficulty
This extension allows user to hide difficulty level in leetcode.
Apa itu Leetcode Click to Hide Difficulty?
Leetcode Click to Hide Difficulty adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension allows user to hide difficulty level in leetcode.".
Unduh Berkas CRX Ekstensi Leetcode Click to Hide Difficulty
Unduh file ekstensi Leetcode Click to Hide Difficulty dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Leetcode Click to Hide Difficulty |
ID | iphbgefdkepijabekiohipokmoceddfn |
URL Resmi | https://chromewebstore.google.com/detail/leetcode-click-to-hide-di/iphbgefdkepijabekiohipokmoceddfn |
Deskripsi | This extension allows user to hide difficulty level in leetcode. |
Ukuran File | 5.46 KB |
Jumlah Instalasi | 20 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2017-12-25 |
Tanggal Publikasi | 2017-12-25 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | Unknown |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |