Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Apple Documentation Outline Helper là gì?

Apple Documentation Outline Helper là một tiện ích mở rộng Chrome được phát triển bởi zlrs, và tính năng chính của nó là "Provide contents outline for Apple Developer Documentation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Apple Documentation Outline Helper

Tải xuống các tệp mở rộng Apple Documentation Outline Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Apple Documentation Outline Helper Apple Documentation Outline Helper
ID fljhfeolomcjbldchohonjlmlimcognh
URL Chính Thức https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh
Mô tả Provide contents outline for Apple Developer Documentation.
Kích Thước Tệp 2.77 MB
Số Lần Cài Đặt 50
Phiên Bản Hiện Tại 0.2.6
Cập Nhật Lần Cuối 2020-07-22
Ngày Phát Hành 2020-07-22
Nhà Phát Triển zlrs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zlrs/AppleDocumentationOutline/
URL Trang Trợ Giúp https://github.com/zlrs/AppleDocumentationOutline/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}