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. 擴展基本資訊
| 名稱 | |
| ID | afnogakjnebbgcbjkgmhaccljfejeflh |
| 官方網址 | 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\/"
]
} | |