Pages2Repo
Opens the corresponding repository from a GitHub Page
什么是Pages2Repo?
Pages2Repo是由Frozenfire92开发的Chrome扩展程序,该扩展的主要功能是“Opens the corresponding repository from a GitHub Page”。
扩展截图
下载Pages2Repo扩展crx文件
下载Pages2Repo扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension that shows a page action when on a GitHub Pages website. This page action will open a popup which allows you to get quick info about the repository as well as link to it, or copy the git clone url.
扩展基本信息
名称 | Pages2Repo |
ID | afnogakjnebbgcbjkgmhaccljfejeflh |
官方URL | https://chromewebstore.google.com/detail/pages2repo/afnogakjnebbgcbjkgmhaccljfejeflh |
简介 | Opens the corresponding repository from a GitHub Page |
文件大小 | 213 KB |
安装次数 | 92 |
当前版本 | 0.1.6 |
更新时间 | 2015-06-23 |
上架时间 | 2015-06-23 |
评分 | 3.67/5 共3次评分 |
开发者 | Frozenfire92 |
付费类型 | free |
扩展官网 | https://github.com/Frozenfire92/Pages2Repo |
帮助页面URL | https://github.com/Frozenfire92/Pages2Repo/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pages2Repo", "description": "Opens the corresponding repository from a GitHub Page", "version": "0.1.6", "manifest_version": 2, "icons": { "16": "images\/repo-16.png", "128": "images\/repo-128.png" }, "background": { "scripts": [ "scripts\/github.js", "scripts\/background.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "images\/repo-19.png", "38": "images\/repo-38.png" }, "default_title": "Pages2Repo", "default_popup": "popup.html" }, "options_page": "token.html", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "storage", "tabs", "clipboardWrite", "https:\/\/*.github.io\/*", "https:\/\/github.com\/" ] } |