Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Wat is Apple Documentation Outline Helper?

Apple Documentation Outline Helper is een Chrome-extensie ontwikkeld door zlrs, en de belangrijkste functie is "Provide contents outline for Apple Developer Documentation.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Apple Documentation Outline Helper

Download Apple Documentation Outline Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
Officiële URL https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
Beschrijving Provide contents outline for Apple Developer Documentation.
Bestandsgrootte 2.77 MB
Aantal Installaties 50
Huidige Versie 0.2.6
Laatst Bijgewerkt 2020-07-22
Publicatiedatum 2020-07-22
Ontwikkelaar zlrs
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/zlrs/AppleDocumentationOutline/
Help Pagina-URL https://github.com/zlrs/AppleDocumentationOutline/issues
Ondersteunde Talen 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"
    }
}