Starmark
Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
What is Starmark?
Starmark is a Chrome extension developed by ryansworks, and its main feature is "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".
Extension Screenshots
Download Starmark Extension CRX File
Download Starmark 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
Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a bookmark will be added into the "github-stars" folder in your main Bookmarks.
Extension Basic Information
Name | |
ID | bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Official URL | https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Description | Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a… |
File Size | 76.11 KB |
Installation Count | 61 |
Current Version | 0.0.1 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 5.00/5 Total 2 Ratings |
Developer | ryansworks |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Starmark", "version": "0.0.1", "browser_action": { "default_popup": "popup.html", "default_icon": "icon-16.png", "default_title": "Starmark" }, "icons": { "128": "icon-128.png", "16": "icon-16.png", "48": "icon-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "lodash.min.js", "background.js" ], "persistent": false }, "permissions": [ "https:\/\/github.com\/*", "tabs", "bookmarks" ] } |