Pages2Repo

Opens the corresponding repository from a GitHub Page

Cos'è Pages2Repo?

Pages2Repo è un'estensione di Chrome sviluppata da Frozenfire92, e la sua funzione principale è "Opens the corresponding repository from a GitHub Page".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Pages2Repo

Scarica i file di estensione Pages2Repo in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pages2Repo Pages2Repo
ID afnogakjnebbgcbjkgmhaccljfejeflh
URL Ufficiale https://chromewebstore.google.com/detail/pages2repo/afnogakjnebbgcbjkgmhaccljfejeflh
Descrizione Opens the corresponding repository from a GitHub Page
Dimensione del File 213 KB
Conteggio Installazioni 92
Versione Corrente 0.1.6
Ultimo Aggiornamento 2015-06-23
Data di Pubblicazione 2015-06-23
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Frozenfire92
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Frozenfire92/Pages2Repo
URL della Pagina di Aiuto https://github.com/Frozenfire92/Pages2Repo/issues
Lingue Supportate 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\/"
    ]
}