OctoPermalinker
Fixes broken GitHub links.
Was ist OctoPermalinker?
OctoPermalinker ist eine Chrome-Erweiterung, die von Joseph Frazier entwickelt wurde, und ihr Hauptmerkmal ist "Fixes broken GitHub links.".
Erweiterungsscreenshots
OctoPermalinker-Erweiterungs-CRX-Datei herunterladen
Laden Sie OctoPermalinker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | bcnkgcoohaaaclieohdlkphgfinkgbfm | 
| Offizielle URL | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm | 
| Beschreibung | Fixes broken GitHub links. | 
| Dateigröße | 373 KB | 
| Installationsanzahl | 239 | 
| Aktuelle Version | 1.0.0 | 
| Letztes Update | 2017-05-20 | 
| Veröffentlichungsdatum | 2017-05-20 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | Joseph Frazier | 
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/josephfrazier/octopermalinker | 
| Hilfeseite URL | https://github.com/josephfrazier/octopermalinker/issues | 
| Unterstützte Sprachen | 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\/"
    ]
}  |  |