Objective-C Apple Documentation
Toggle Apple Documentation to default to Objective-C
Что такое Objective-C Apple Documentation?
Objective-C Apple Documentation - это расширение Chrome, разработанное Jean-François Geyelin, и его основная функция - "Toggle Apple Documentation to default to Objective-C".
Снимки экрана расширения
Скачать файл CRX расширения Objective-C Apple Documentation
Скачайте файлы расширений Objective-C Apple Documentation в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
# Updated on June 12th 2017 to support the new Apple docs
This extension allows you to always view Apple Documentation in Objective-C.
You can press the extension button to toggle the extension on/off.
Source code is on GitHub: https://github.com/jyaif/ObjCAppleDocs
Disclaimer: the extension does not add hearts around "Objective-C". Основная информация о расширении
| Название | |
| ID | ieoednnknalmcifojimjpbamnmdpniio |
| Официальный URL | https://chromewebstore.google.com/detail/objective-c-apple-documen/ieoednnknalmcifojimjpbamnmdpniio |
| Описание | Toggle Apple Documentation to default to Objective-C |
| Размер файла | 42.28 KB |
| Количество установок | 70 |
| Текущая Версия | 1.3 |
| Последнее Обновление | 2017-08-19 |
| Дата публикации | 2017-08-19 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | Jean-François Geyelin |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"persistent": true,
"scripts": [
"script\/background.js"
]
},
"name": "Objective-C Apple Documentation",
"version": "1.3",
"manifest_version": 2,
"description": "Toggle Apple Documentation to default to Objective-C",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"96": "icon96.png",
"128": "icon128.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"https:\/\/developer.apple.com\/documentation\/*"
],
"browser_action": {
"default_icon": {
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Toggle Obj-C Documentation"
}
} | |