GitHub Favorites
Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.
GitHub Favoritesとは何ですか?
GitHub Favoritesはhswolffによって開発されたChromeの拡張機能で、その主な機能は「Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.」です。
拡張機能のスクリーンショット
GitHub Favorites拡張機能のCRXファイルをダウンロード
GitHub Favorites拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This little extension for Google Chrome adds a Favorite button on GitHub repository pages right next to the Watch button. When you hit the Favorite button it adds that repo to the folder 'GitHub Favorites' in your Bookmarks. If you want to remove the bookmark just hit the Favorite button again! Full info available on the GitHub repository! https://github.com/hswolff/github-favorites
拡張機能の基本情報
名前 | |
ID | kfhdalekdpifhlndhcdnjgjoefiajefc |
公式URL | https://chrome.google.com/webstore/detail/github-favorites/kfhdalekdpifhlndhcdnjgjoefiajefc |
説明 | Allows you to favorite GitHub repos to save for later instead of adding them to your watch list. |
ファイルサイズ | 593 KB |
インストール数 | 201 |
現在のバージョン | 1.4 |
最終更新日 | 2014-02-22 |
公開日 | 2014-02-22 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | hswolff |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/hswolff/github-favorites |
対応言語 | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Favorites", "version": "1.4", "description": "Allows you to favorite GitHub repos to save for later instead of adding them to your watch list.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2, "web_accessible_resources": [ "script.js" ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "bookmarks", "https:\/\/github.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*.com\/blog*", "*.com\/explore*", "*.com\/settings*", "*.com\/inbox*", "*.com\/repositories*", "*.com\/popular*" ], "js": [ "script.js" ] } ] } |