Starmark
Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…
什麼是Starmark?
Starmark是由ryansworks開發的Chrome擴展程式,該擴展的主要功能是“Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a…”。
擴展截圖
下載Starmark擴展crx文件
下載Starmark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
官方網址 | https://chromewebstore.google.com/detail/starmark/bkobkbkmhkmlmdolbhnmmmhnccdgaebk |
簡介 | Starmark is a Chrome extension that converts the repos you've starred on GitHub into bookmarks. Also, anytime you star a repo, a… |
檔案大小 | 76.11 KB |
安裝次數 | 61 |
目前版本 | 0.0.1 |
更新時間 | 2019-03-08 |
上架時間 | 2019-03-08 |
評分 | 5.00/5 共 2 次評分 |
開發者 | ryansworks |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |