Awesome Stars
Awesome Stars is a chrome extension that shows you stars of repository on awesome list.
什么是Awesome Stars?
Awesome Stars是由henry40408开发的Chrome扩展程序,该扩展的主要功能是“Awesome Stars is a chrome extension that shows you stars of repository on awesome list.”。
扩展截图
下载Awesome Stars扩展crx文件
下载Awesome Stars扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Awesome Stars is a chrome extension that shows you stars of repository on awesome list. - README: https://github.com/henry40408/awesome-stars/blob/master/README.md - CHANGELOG: https://github.com/henry40408/awesome-stars/blob/master/CHANGELOG.md - GitHub: https://github.com/henry40408/awesome-stars Feel free to contribute!
扩展基本信息
名称 | Awesome Stars |
ID | lcokkcbdmicofdahlooopcpinogephfb |
官方URL | https://chromewebstore.google.com/detail/awesome-stars/lcokkcbdmicofdahlooopcpinogephfb |
简介 | Awesome Stars is a chrome extension that shows you stars of repository on awesome list. |
文件大小 | 305 KB |
安装次数 | 170 |
当前版本 | 2.3.0 |
更新时间 | 2017-11-06 |
上架时间 | 2017-11-06 |
评分 | 5.00/5 共3次评分 |
开发者 | henry40408 |
付费类型 | free |
扩展官网 | https://github.com/henry40408/awesome-stars |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "2.3.0", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__" }, "options_page": "pages\/options.html", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [ "images\/options-background.svg", "images\/options-logo.png", "images\/star-blue.svg", "images\/star-orange.svg", "images\/star-white.svg", "images\/star-yellow.svg" ], "permissions": [ "storage" ] } |