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.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | fljhfeolomcjbldchohonjlmlimcognh |
官方網址 | 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" } } |