Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Cos'è Apple Documentation Outline Helper?

Apple Documentation Outline Helper è un'estensione di Chrome sviluppata da zlrs, e la sua funzione principale è "Provide contents outline for Apple Developer Documentation.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Apple Documentation Outline Helper

Scarica i file di estensione Apple Documentation Outline Helper 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

                        Provide contents outline for [Apple Developer Documentation](https://developer.apple.com/documentation/).

Apple developers read Apple Developer Documentation frequently in their daily work. Although the documentation is well written, it doesn't provide a content outline that help developers get the structure of the articles. 

This extension improves the reading experience of Apple Developer Documentation by adding an outline section on the right column of the page.                    

Informazioni di Base sull'Estensione

Nome Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
URL Ufficiale https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
Descrizione Provide contents outline for Apple Developer Documentation.
Dimensione del File 2.77 MB
Conteggio Installazioni 50
Versione Corrente 0.2.6
Ultimo Aggiornamento 2020-07-22
Data di Pubblicazione 2020-07-22
Sviluppatore zlrs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/zlrs/AppleDocumentationOutline/
URL della Pagina di Aiuto https://github.com/zlrs/AppleDocumentationOutline/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Apple Documentation Outline Helper",
    "version": "0.2.6",
    "description": "Provide contents outline for Apple Developer Documentation.",
    "permissions": [
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/developer.apple.com\/documentation\/technologies",
                "https:\/\/developer.apple.com\/documentation\/technologies"
            ],
            "js": [
                "content-Technologies.js"
            ]
        },
        {
            "matches": [
                "http:\/\/developer.apple.com\/documentation\/*",
                "https:\/\/developer.apple.com\/documentation\/*"
            ],
            "exclude_globs": [
                "*:\/\/developer.apple.com\/documentation\/technologies",
                "*:\/\/developer.apple.com\/documentation"
            ],
            "all_frames": false,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icon": {
        "128": "assets\/icon_128px.png",
        "48": "assets\/icon_48px.png"
    }
}