Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Co je Apple Documentation Outline Helper?

Apple Documentation Outline Helper je rozšíření Chrome vyvinuté zlrs, a jeho hlavní funkcí je „Provide contents outline for Apple Developer Documentation.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Apple Documentation Outline Helper

Stáhněte si soubory rozšíření Apple Documentation Outline Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
Oficiální URL https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
Popis Provide contents outline for Apple Developer Documentation.
Velikost souboru 2.77 MB
Počet instalací 50
Aktuální Verze 0.2.6
Poslední Aktualizace 2020-07-22
Datum Vydání 2020-07-22
Vývojář zlrs
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/zlrs/AppleDocumentationOutline/
URL Stránky Nápovědy https://github.com/zlrs/AppleDocumentationOutline/issues
Podporované Jazyky 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"
    }
}