Objective-C Apple Documentation

Toggle Apple Documentation to default to Objective-C

Cos'è Objective-C Apple Documentation?

Objective-C Apple Documentation è un'estensione di Chrome sviluppata da Jean-François Geyelin, e la sua funzione principale è "Toggle Apple Documentation to default to Objective-C".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Objective-C Apple Documentation

Scarica i file di estensione Objective-C Apple Documentation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        # Updated on June 12th 2017 to support the new Apple docs

This extension allows you to always view Apple Documentation in Objective-C.
You can press the extension button to toggle the extension on/off.
Source code is on GitHub: https://github.com/jyaif/ObjCAppleDocs

Disclaimer: the extension does not add hearts around "Objective-C".                    

Informazioni di Base sull'Estensione

Nome Objective-C Apple Documentation Objective-C Apple Documentation
ID ieoednnknalmcifojimjpbamnmdpniio
URL Ufficiale https://chromewebstore.google.com/detail/objective-c-apple-documen/ieoednnknalmcifojimjpbamnmdpniio
Descrizione Toggle Apple Documentation to default to Objective-C
Dimensione del File 42.28 KB
Conteggio Installazioni 70
Versione Corrente 1.3
Ultimo Aggiornamento 2017-08-19
Data di Pubblicazione 2017-08-19
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Jean-François Geyelin
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "script\/background.js"
        ]
    },
    "name": "Objective-C Apple Documentation",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Toggle Apple Documentation to default to Objective-C",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/developer.apple.com\/documentation\/*"
    ],
    "browser_action": {
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Toggle Obj-C Documentation"
    }
}