Apple Documentation Outline Helper
Provide contents outline for Apple Developer Documentation.
Apa itu Apple Documentation Outline Helper?
Apple Documentation Outline Helper adalah ekstensi Chrome yang dikembangkan oleh zlrs, dan fitur utamanya adalah "Provide contents outline for Apple Developer Documentation.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Apple Documentation Outline Helper
Unduh file ekstensi Apple Documentation Outline Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | fljhfeolomcjbldchohonjlmlimcognh |
URL Resmi | https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh |
Deskripsi | Provide contents outline for Apple Developer Documentation. |
Ukuran File | 2.77 MB |
Jumlah Instalasi | 50 |
Versi Saat Ini | 0.2.6 |
Terakhir Diperbarui | 2020-07-22 |
Tanggal Publikasi | 2020-07-22 |
Pengembang | zlrs |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/zlrs/AppleDocumentationOutline/ |
URL Halaman Bantuan | https://github.com/zlrs/AppleDocumentationOutline/issues |
Bahasa yang Didukung | 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" } } |