Starmark
Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
Was ist Starmark?
Starmark ist eine Chrome-Erweiterung, die von ryansworks entwickelt wurde, und ihr Hauptmerkmal ist "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".
Erweiterungsscreenshots
Starmark-Erweiterungs-CRX-Datei herunterladen
Laden Sie Starmark-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Offizielle URL | https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Beschreibung | Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a… |
Dateigröße | 76.11 KB |
Installationsanzahl | 61 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2019-03-08 |
Veröffentlichungsdatum | 2019-03-08 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | ryansworks |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |