Wakarank
Wakatime user rank
What is Wakarank?
Wakarank is a Chrome extension developed by vvmspace, and its main feature is "Wakatime user rank".
Extension Screenshots
Download Wakarank Extension CRX File
Download Wakarank extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Wakarank for Wakatime: This extension displaying your rank for Wakatime.com programmers time tracker. Not official. Star on GitHub: https://github.com/vvmspace/wakarank Happy coding!
Extension Basic Information
Name | Wakarank |
ID | menkofikipbkndemhfhdpikeffdnbnco |
Official URL | https://chromewebstore.google.com/detail/wakarank/menkofikipbkndemhfhdpikeffdnbnco |
Description | Wakatime user rank |
File Size | 115 KB |
Installation Count | 11 |
Current Version | 0.0.7 |
Last Updated | 2018-06-21 |
Publish Date | 2018-06-21 |
Developer | vvmspace |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.7", "name": "Wakarank", "description": "Wakatime user rank", "browser_action": { "default_icon": "img\/icon.png", "default_popup": "html\/popup.html", "default_title": "Wakarank" }, "background": { "scripts": [ "js\/jquery.min.js", "js\/background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery.min.js", "js\/content.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ], "permissions": [] } |