OctoPermalinker
Fixes broken GitHub links.
Co to jest OctoPermalinker?
OctoPermalinker to rozszerzenie Chrome opracowane przez Joseph Frazier, a jego główną funkcją jest „Fixes broken GitHub links.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia OctoPermalinker
Pobierz pliki rozszerzeń OctoPermalinker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | bcnkgcoohaaaclieohdlkphgfinkgbfm | 
| Oficjalny URL | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm | 
| Opis | Fixes broken GitHub links. | 
| Rozmiar pliku | 373 KB | 
| Liczba instalacji | 239 | 
| Aktualna Wersja | 1.0.0 | 
| Ostatnia Aktualizacja | 2017-05-20 | 
| Data Publikacji | 2017-05-20 | 
| Ocena | 5.00/5 Łącznie 1 Oceny | 
| Deweloper | Joseph Frazier | 
| Typ Płatności | free | 
| Strona Rozszerzenia | https://github.com/josephfrazier/octopermalinker | 
| Adres URL Strony Pomocy | https://github.com/josephfrazier/octopermalinker/issues | 
| Obsługiwane Języki | 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\/"
    ]
}  |  |