Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Was ist Apple Documentation Outline Helper?

Apple Documentation Outline Helper ist eine Chrome-Erweiterung, die von zlrs entwickelt wurde, und ihr Hauptmerkmal ist "Provide contents outline for Apple Developer Documentation.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Apple Documentation Outline Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Apple Documentation Outline Helper-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
Offizielle URL https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
Beschreibung Provide contents outline for Apple Developer Documentation.
Dateigröße 2.77 MB
Installationsanzahl 50
Aktuelle Version 0.2.6
Letztes Update 2020-07-22
Veröffentlichungsdatum 2020-07-22
Entwickler zlrs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/zlrs/AppleDocumentationOutline/
Hilfeseite URL https://github.com/zlrs/AppleDocumentationOutline/issues
Unterstützte Sprachen 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"
    }
}