Pages2Repo

Opens the corresponding repository from a GitHub Page

Что такое Pages2Repo?

Pages2Repo - это расширение Chrome, разработанное Frozenfire92, и его основная функция - "Opens the corresponding repository from a GitHub Page".

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

screenshot
screenshot
screenshot

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

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

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

                        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.                    

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

Название Pages2Repo Pages2Repo
ID afnogakjnebbgcbjkgmhaccljfejeflh
Официальный URL https://chromewebstore.google.com/detail/pages2repo/afnogakjnebbgcbjkgmhaccljfejeflh
Описание Opens the corresponding repository from a GitHub Page
Размер файла 213 KB
Количество установок 92
Текущая Версия 0.1.6
Последнее Обновление 2015-06-23
Дата публикации 2015-06-23
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Frozenfire92
Тип оплаты free
Официальный сайт расширения https://github.com/Frozenfire92/Pages2Repo
URL страницы помощи https://github.com/Frozenfire92/Pages2Repo/issues
Поддерживаемые языки 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\/"
    ]
}