Pages2Repo

Opens the corresponding repository from a GitHub Page

O que é Pages2Repo?

Pages2Repo é uma extensão do Chrome desenvolvida por Frozenfire92, e sua principal característica é "Opens the corresponding repository from a GitHub Page".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Pages2Repo

Baixe arquivos de extensão Pages2Repo no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Pages2Repo Pages2Repo
ID afnogakjnebbgcbjkgmhaccljfejeflh
URL Oficial https://chromewebstore.google.com/detail/pages2repo/afnogakjnebbgcbjkgmhaccljfejeflh
Descrição Opens the corresponding repository from a GitHub Page
Tamanho do Arquivo 213 KB
Contagem de Instalações 92
Versão Atual 0.1.6
Última Atualização 2015-06-23
Data de Publicação 2015-06-23
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Frozenfire92
Tipo de Pagamento free
Site da Extensão https://github.com/Frozenfire92/Pages2Repo
URL da Página de Ajuda https://github.com/Frozenfire92/Pages2Repo/issues
Idiomas Suportados 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\/"
    ]
}