Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Apple Documentation Outline Helperとは何ですか?

Apple Documentation Outline Helperはzlrsによって開発されたChromeの拡張機能で、その主な機能は「Provide contents outline for Apple Developer Documentation.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Apple Documentation Outline Helper拡張機能のCRXファイルをダウンロード

Apple Documentation Outline Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
公式URL https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
説明 Provide contents outline for Apple Developer Documentation.
ファイルサイズ 2.77 MB
インストール数 50
現在のバージョン 0.2.6
最終更新日 2020-07-22
公開日 2020-07-22
開発者 zlrs
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/zlrs/AppleDocumentationOutline/
ヘルプページのURL https://github.com/zlrs/AppleDocumentationOutline/issues
対応言語 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"
    }
}