LeetPlug
This extension adds tracking features to the LeetCode interface.
Co je LeetPlug?
LeetPlug je rozšíření Chrome vyvinuté leetplug, a jeho hlavní funkcí je „This extension adds tracking features to the LeetCode interface.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LeetPlug
Stáhněte si soubory rozšíření LeetPlug ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This is a browser extension that is able to interact with LeetCode official site. It can track the activities on each problem and all the related events: submissions, time spent coding the solution, repetitions of a problem.
Základní Informace o Rozšíření
Název | LeetPlug |
ID | mcpaohflldejneeahigainahjenkgmef |
Oficiální URL | https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef |
Popis | This extension adds tracking features to the LeetCode interface. |
Velikost souboru | 45.18 KB |
Počet instalací | 1,358 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2020-08-21 |
Datum Vydání | 2020-07-26 |
Hodnocení | 4.25/5 Celkem 12 Hodnocení |
Vývojář | leetplug |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://leetplug.azurewebsites.net |
URL Stránky Zásad Ochrany Soukromí | https://leetplug.azurewebsites.net/static/pages/policy.html |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LeetPlug", "description": "This extension adds tracking features to the LeetCode interface.", "version": "1.1.1", "icons": { "16": "images\/brain16.png", "24": "images\/brain24.png", "32": "images\/brain32.png", "128": "images\/brain128.png" }, "browser_action": { "default_icon": "images\/brain24.png", "default_popup": "src\/popup.html" }, "permissions": [ "storage", "*:\/\/leetplug.azurewebsites.net\/*" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "run_at": "document_start", "js": [ "thirdParty\/jquery-3.5.1.slim.min.js", "src\/problemsScript.js" ] } ] } |