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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" ] } ] } |