Apple Documentation Outline Helper
Provide contents outline for Apple Developer Documentation.
Apple Documentation Outline Helper क्या है?
Apple Documentation Outline Helper zlrs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provide contents outline for Apple Developer Documentation."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Apple Documentation Outline Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |