GitHub Pages
Add a link to the GitHub-Page of a GitHub repository
什么是GitHub Pages?
GitHub Pages是由Marco Rieger开发的Chrome扩展程序,该扩展的主要功能是“Add a link to the GitHub-Page of a GitHub repository”。
扩展截图
下载GitHub Pages扩展crx文件
下载GitHub Pages扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | opeajkladelglljdblcjgkiclppcbkae |
| 官方URL | https://chromewebstore.google.com/detail/github-pages/opeajkladelglljdblcjgkiclppcbkae |
| 简介 | Add a link to the GitHub-Page of a GitHub repository |
| 文件大小 | 7.93 KB |
| 安装次数 | 145 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2015-11-13 |
| 上架时间 | 2015-11-13 |
| 开发者 | Marco Rieger |
| 付费类型 | free |
| 扩展官网 | https://github.com/ins0/chrome-gh-pages |
| 帮助页面URL | https://github.com/ins0/chrome-gh-pages/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Pages",
"version": "1.2.0",
"manifest_version": 2,
"description": "Add a link to the GitHub-Page of a GitHub repository",
"homepage_url": "https:\/\/github.com\/ins0\/chrome-gh-pages",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"https:\/\/github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/gh-pages.js"
]
}
]
} | |