DocFlip

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

Was ist DocFlip?

DocFlip ist eine Chrome-Erweiterung, die von Nathan Greenstein entwickelt wurde, und ihr Hauptmerkmal ist "DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.".

Erweiterungsscreenshots

screenshot

DocFlip-Erweiterungs-CRX-Datei herunterladen

Laden Sie DocFlip-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name DocFlip DocFlip
ID pafmafifhicbmimdmmljhiaigkcnbkkl
Offizielle URL https://chrome.google.com/webstore/detail/docflip/pafmafifhicbmimdmmljhiaigkcnbkkl
Beschreibung DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.
Dateigröße 12.7 KB
Installationsanzahl 10
Aktuelle Version 1.0
Letztes Update 2012-10-05
Veröffentlichungsdatum 2012-10-05
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Nathan Greenstein
Zahlungsart free
Erweiterungswebsite https://github.com/nathangreenstein/DocFlip
Unterstützte Sprachen 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"
            ]
        }
    ]
}