Pages2Repo

Opens the corresponding repository from a GitHub Page

Pages2Repo란 무엇입니까?

Pages2Repo은(는) Frozenfire92에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens the corresponding repository from a GitHub Page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Pages2Repo 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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