Objective-C Apple Documentation
Toggle Apple Documentation to default to Objective-C
Qu'est-ce que Objective-C Apple Documentation ?
Objective-C Apple Documentation est une extension Chrome développée par Jean-François Geyelin, et sa fonction principale est "Toggle Apple Documentation to default to Objective-C".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Objective-C Apple Documentation
Téléchargez les fichiers d'extension Objective-C Apple Documentation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
# 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".
Informations de Base sur l'Extension
Nom | Objective-C Apple Documentation |
ID | ieoednnknalmcifojimjpbamnmdpniio |
URL Officiel | https://chromewebstore.google.com/detail/objective-c-apple-documen/ieoednnknalmcifojimjpbamnmdpniio |
Description | Toggle Apple Documentation to default to Objective-C |
Taille du Fichier | 42.28 KB |
Nombre d'Installations | 70 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2017-08-19 |
Date de Publication | 2017-08-19 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Jean-François Geyelin |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |