Apple Documentation Outline Helper
Provide contents outline for Apple Developer Documentation.
Τι είναι το Apple Documentation Outline Helper;
Το Apple Documentation Outline Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zlrs, και η κύρια λειτουργία του είναι "Provide contents outline for Apple Developer Documentation.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Apple Documentation Outline Helper
Λήψη αρχείων επέκτασης Apple Documentation Outline Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Provide contents outline for [Apple Developer Documentation](https://developer.apple.com/documentation/). Apple developers read Apple Developer Documentation frequently in their daily work. Although the documentation is well written, it doesn't provide a content outline that help developers get the structure of the articles. This extension improves the reading experience of Apple Developer Documentation by adding an outline section on the right column of the page.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | fljhfeolomcjbldchohonjlmlimcognh |
Επίσημο URL | https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh |
Περιγραφή | Provide contents outline for Apple Developer Documentation. |
Μέγεθος Αρχείου | 2.77 MB |
Αριθμός Εγκαταστάσεων | 50 |
Τρέχουσα Έκδοση | 0.2.6 |
Τελευταία Ενημέρωση | 2020-07-22 |
Ημερομηνία Δημοσίευσης | 2020-07-22 |
Προγραμματιστής | zlrs |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/zlrs/AppleDocumentationOutline/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/zlrs/AppleDocumentationOutline/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Apple Documentation Outline Helper", "version": "0.2.6", "description": "Provide contents outline for Apple Developer Documentation.", "permissions": [ "webNavigation" ], "content_scripts": [ { "matches": [ "http:\/\/developer.apple.com\/documentation\/technologies", "https:\/\/developer.apple.com\/documentation\/technologies" ], "js": [ "content-Technologies.js" ] }, { "matches": [ "http:\/\/developer.apple.com\/documentation\/*", "https:\/\/developer.apple.com\/documentation\/*" ], "exclude_globs": [ "*:\/\/developer.apple.com\/documentation\/technologies", "*:\/\/developer.apple.com\/documentation" ], "all_frames": false, "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icon": { "128": "assets\/icon_128px.png", "48": "assets\/icon_48px.png" } } |