Objective-C Apple Documentation

Toggle Apple Documentation to default to Objective-C

O que é Objective-C Apple Documentation?

Objective-C Apple Documentation é uma extensão do Chrome desenvolvida por Jean-François Geyelin, e sua principal característica é "Toggle Apple Documentation to default to Objective-C".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Objective-C Apple Documentation

Baixe arquivos de extensão Objective-C Apple Documentation no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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".                    

Informações Básicas da Extensão

Nome Objective-C Apple Documentation Objective-C Apple Documentation
ID ieoednnknalmcifojimjpbamnmdpniio
URL Oficial https://chromewebstore.google.com/detail/objective-c-apple-documen/ieoednnknalmcifojimjpbamnmdpniio
Descrição Toggle Apple Documentation to default to Objective-C
Tamanho do Arquivo 42.28 KB
Contagem de Instalações 70
Versão Atual 1.3
Última Atualização 2017-08-19
Data de Publicação 2017-08-19
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Jean-François Geyelin
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}