OctoPermalinker

Fixes broken GitHub links.

Cos'è OctoPermalinker?

OctoPermalinker è un'estensione di Chrome sviluppata da Joseph Frazier, e la sua funzione principale è "Fixes broken GitHub links.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione OctoPermalinker

Scarica i file di estensione OctoPermalinker 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

                        OctoPermalinker is a browser extension that searches GitHub comments/files for links to files on branches, and adds a link to where the branch pointed when the comment/file was made/updated. This helps you avoid following a link that was broken after being posted. For context, here's some discussion about broken GitHub links:
https://news.ycombinator.com/item?id=8046710                    

Informazioni di Base sull'Estensione

Nome OctoPermalinker OctoPermalinker
ID bcnkgcoohaaaclieohdlkphgfinkgbfm
URL Ufficiale https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm
Descrizione Fixes broken GitHub links.
Dimensione del File 373 KB
Conteggio Installazioni 239
Versione Corrente 1.0.0
Ultimo Aggiornamento 2017-05-20
Data di Pubblicazione 2017-05-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Joseph Frazier
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/josephfrazier/octopermalinker
URL della Pagina di Aiuto https://github.com/josephfrazier/octopermalinker/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoPermalinker",
    "version": "1.0.0",
    "manifest_version": 2,
    "author": "Joseph Frazier",
    "description": "Fixes broken GitHub links.",
    "homepage_url": "https:\/\/github.com\/josephfrazier\/octopermalinker",
    "icons": {
        "212": "link-icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "app.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "link-icon.png"
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/",
        "https:\/\/gist.github.com\/"
    ]
}