Objective-C Apple Documentation
Toggle Apple Documentation to default to Objective-C
Objective-C Apple Documentationとは何ですか?
Objective-C Apple DocumentationはJean-François Geyelinによって開発されたChromeの拡張機能で、その主な機能は「Toggle Apple Documentation to default to Objective-C」です。
拡張機能のスクリーンショット
Objective-C Apple Documentation拡張機能のCRXファイルをダウンロード
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".
拡張機能の基本情報
名前 | Objective-C Apple Documentation |
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 |
Eメール | [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" } } |