DocFlip

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

Co je DocFlip?

DocFlip je rozšíření Chrome vyvinuté Nathan Greenstein, a jeho hlavní funkcí je „DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření DocFlip

Stáhněte si soubory rozšíření DocFlip ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název DocFlip DocFlip
ID pafmafifhicbmimdmmljhiaigkcnbkkl
Oficiální URL https://chrome.google.com/webstore/detail/docflip/pafmafifhicbmimdmmljhiaigkcnbkkl
Popis DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.
Velikost souboru 12.7 KB
Počet instalací 10
Aktuální Verze 1.0
Poslední Aktualizace 2012-10-05
Datum Vydání 2012-10-05
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Nathan Greenstein
Typ Platby free
Webové stránky Rozšíření https://github.com/nathangreenstein/DocFlip
Podporované Jazyky 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"
            ]
        }
    ]
}