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 |
官方網址 | 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" } } |