Starmark
Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
Hvad er Starmark?
Starmark er en Chrome-udvidelse udviklet af ryansworks, og dens hovedfunktion er "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".
Udvidelsesskærmbilleder
Download Starmark-udvidelses-CRX-fil
Download Starmark-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Officiel URL | https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Beskrivelse | Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a… |
Filstørrelse | 76.11 KB |
Antal Installationer | 61 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2019-03-08 |
Udgivelsesdato | 2019-03-08 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | ryansworks |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |