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.".
Снимки экрана расширения
Скачать файл 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.
Основная информация о расширении
Название | |
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" } } |