Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Co to jest Apple Documentation Outline Helper?

Apple Documentation Outline Helper to rozszerzenie Chrome opracowane przez zlrs, a jego główną funkcją jest „Provide contents outline for Apple Developer Documentation.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Apple Documentation Outline Helper

Pobierz pliki rozszerzeń Apple Documentation Outline Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
Oficjalny URL https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
Opis Provide contents outline for Apple Developer Documentation.
Rozmiar pliku 2.77 MB
Liczba instalacji 50
Aktualna Wersja 0.2.6
Ostatnia Aktualizacja 2020-07-22
Data Publikacji 2020-07-22
Deweloper zlrs
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/zlrs/AppleDocumentationOutline/
Adres URL Strony Pomocy https://github.com/zlrs/AppleDocumentationOutline/issues
Obsługiwane Języki 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"
    }
}