LeetPlug
This extension adds tracking features to the LeetCode interface.
LeetPlugとは何ですか?
LeetPlugはleetplugによって開発されたChromeの拡張機能で、その主な機能は「This extension adds tracking features to the LeetCode interface.」です。
拡張機能のスクリーンショット
LeetPlug拡張機能のCRXファイルをダウンロード
LeetPlug拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | LeetPlug |
ID | mcpaohflldejneeahigainahjenkgmef |
公式URL | https://chromewebstore.google.com/detail/leetplug/mcpaohflldejneeahigainahjenkgmef |
説明 | This extension adds tracking features to the LeetCode interface. |
ファイルサイズ | 45.18 KB |
インストール数 | 1,358 |
現在のバージョン | 1.1.1 |
最終更新日 | 2020-08-21 |
公開日 | 2020-07-26 |
評価 | 4.25/5 合計 12 レビュー |
開発者 | leetplug |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://leetplug.azurewebsites.net |
プライバシーポリシーページのURL | https://leetplug.azurewebsites.net/static/pages/policy.html |
対応言語 | 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" ] } ] } |