Apple Documentation Outline Helper

Provide contents outline for Apple Developer Documentation.

Apple Documentation Outline Helperคืออะไร?

Apple Documentation Outline Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zlrs และคุณลักษณะหลักของมันคือ "Provide contents outline for Apple Developer Documentation."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Apple Documentation Outline Helper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}