Objective-C Apple Documentation
Toggle Apple Documentation to default to Objective-C
Was ist Objective-C Apple Documentation?
Objective-C Apple Documentation ist eine Chrome-Erweiterung, die von Jean-François Geyelin entwickelt wurde, und ihr Hauptmerkmal ist "Toggle Apple Documentation to default to Objective-C".
Erweiterungsscreenshots
Objective-C Apple Documentation-Erweiterungs-CRX-Datei herunterladen
Laden Sie Objective-C Apple Documentation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
# 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".
Grundlegende Informationen zur Erweiterung
Name | Objective-C Apple Documentation |
ID | ieoednnknalmcifojimjpbamnmdpniio |
Offizielle URL | https://chromewebstore.google.com/detail/objective-c-apple-documen/ieoednnknalmcifojimjpbamnmdpniio |
Beschreibung | Toggle Apple Documentation to default to Objective-C |
Dateigröße | 42.28 KB |
Installationsanzahl | 70 |
Aktuelle Version | 1.3 |
Letztes Update | 2017-08-19 |
Veröffentlichungsdatum | 2017-08-19 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Jean-François Geyelin |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |