Starmark
Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
Apa itu Starmark?
Starmark adalah ekstensi Chrome yang dikembangkan oleh ryansworks, dan fitur utamanya adalah "Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Starmark
Unduh file ekstensi Starmark dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
URL Resmi | https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
Deskripsi | Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a… |
Ukuran File | 76.11 KB |
Jumlah Instalasi | 61 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2019-03-08 |
Tanggal Publikasi | 2019-03-08 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | ryansworks |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |