DocFlip

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

Hvad er DocFlip?

DocFlip er en Chrome-udvidelse udviklet af Nathan Greenstein, og dens hovedfunktion er "DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.".

Udvidelsesskærmbilleder

screenshot

Download DocFlip-udvidelses-CRX-fil

Download DocFlip-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn DocFlip DocFlip
ID pafmafifhicbmimdmmljhiaigkcnbkkl
Officiel URL https://chrome.google.com/webstore/detail/docflip/pafmafifhicbmimdmmljhiaigkcnbkkl
Beskrivelse DocFlip makes it easy to between the Mac and iOS versions of Apple's Developer Library docs.
Filstørrelse 12.7 KB
Antal Installationer 10
Nuværende Version 1.0
Senest Opdateret 2012-10-05
Udgivelsesdato 2012-10-05
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Nathan Greenstein
Betalingsmetode free
Udvidelseswebsted https://github.com/nathangreenstein/DocFlip
Understøttede Sprog 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"
            ]
        }
    ]
}