DocFlip

DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.

Что такое DocFlip?

DocFlip - это расширение Chrome, разработанное Nathan Greenstein, и его основная функция - "DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.".

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

screenshot

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

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

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

                        DocFlip is a Chrome extension that makes it easy to switch between the Mac and iOS versions of Apple's Developer Library documentation. It adds a 'flip' link to the header of any supported page. Clicking the link will take you to the corresponding document in the other platform's Developer Library.                    

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

Название DocFlip DocFlip
ID pafmafifhicbmimdmmljhiaigkcnbkkl
Официальный URL https://chrome.google.com/webstore/detail/docflip/pafmafifhicbmimdmmljhiaigkcnbkkl
Описание DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.
Размер файла 12.7 KB
Количество установок 10
Текущая Версия 1.0
Последнее Обновление 2012-10-05
Дата публикации 2012-10-05
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Nathan Greenstein
Тип оплаты free
Официальный сайт расширения https://github.com/nathangreenstein/DocFlip
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DocFlip",
    "version": "1.0",
    "manifest_version": 2,
    "description": "DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.",
    "homepage_url": "https:\/\/github.com\/nathangreenstein\/DocFlip",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/developer.apple.com\/library\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/developer.apple.com\/library\/*"
            ],
            "js": [
                "docflip.js"
            ],
            "css": [
                "docflip.css"
            ]
        }
    ]
}