Github Stars Manager
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.
Github Stars Managerとは何ですか?
Github Stars ManagerはGabriel Godoyによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.」です。
拡張機能のスクリーンショット
Github Stars Manager拡張機能のCRXファイルをダウンロード
Github Stars Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. It uses storage.sync, so the tags you create will be synced to all your computers, and visible on Github.
拡張機能の基本情報
名前 | ![]() |
ID | epooeampfghdkampjnocabjniefmnkab |
公式URL | https://chrome.google.com/webstore/detail/epooeampfghdkampjnocabjniefmnkab |
説明 | This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created. |
ファイルサイズ | 149 KB |
インストール数 | 245 |
現在のバージョン | 1.9 |
最終更新日 | 2018-05-23 |
公開日 | 2018-05-23 |
評価 | 3.83/5 合計 12 レビュー |
開発者 | Gabriel Godoy |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/gabrielgodoy/github-stars-manager |
ヘルプページのURL | https://github.com/gabrielgodoy/github-stars-manager/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Stars Manager", "description": "This extension allows you to manage your Github stars with tags and create categorized bookmark folder with the tags you created.", "version": "1.9", "browser_action": { "default_icon": "src\/assets\/images\/icons\/icon.png" }, "icons": { "16": "src\/assets\/images\/icons\/icon16.png", "48": "src\/assets\/images\/icons\/icon48.png", "128": "src\/assets\/images\/icons\/icon128.png" }, "permissions": [ "contextMenus", "bookmarks", "tabs", "activeTab", "storage" ], "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "dist\/content_script.js" ], "css": [ "dist\/main.css" ] } ] } |