OctoPermalinker

Fixes broken GitHub links.

Что такое OctoPermalinker?

OctoPermalinker - это расширение Chrome, разработанное Joseph Frazier, и его основная функция - "Fixes broken GitHub links.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения OctoPermalinker

Скачайте файлы расширений OctoPermalinker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название OctoPermalinker OctoPermalinker
ID bcnkgcoohaaaclieohdlkphgfinkgbfm
Официальный URL https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm
Описание Fixes broken GitHub links.
Размер файла 373 KB
Количество установок 239
Текущая Версия 1.0.0
Последнее Обновление 2017-05-20
Дата публикации 2017-05-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Joseph Frazier
Тип оплаты free
Официальный сайт расширения https://github.com/josephfrazier/octopermalinker
URL страницы помощи https://github.com/josephfrazier/octopermalinker/issues
Поддерживаемые языки 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\/"
    ]
}