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" ] } ] } |