Apple Documentation Outline Helper
Provide contents outline for Apple Developer Documentation.
Vad är Apple Documentation Outline Helper?
Apple Documentation Outline Helper är en Chrome-tillägg utvecklad av zlrs, och dess huvudfunktion är "Provide contents outline for Apple Developer Documentation.".
Tilläggsskärmbilder
Ladda ner Apple Documentation Outline Helper-förlängningens CRX-fil
Ladda ner Apple Documentation Outline Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | fljhfeolomcjbldchohonjlmlimcognh |
| Officiell webbadress | https://chrome.google.com/webstore/detail/apple-documentation-outli/fljhfeolomcjbldchohonjlmlimcognh |
| Beskrivning | Provide contents outline for Apple Developer Documentation. |
| Filstorlek | 2.77 MB |
| Antal Installationer | 50 |
| Aktuell Version | 0.2.6 |
| Senast Uppdaterad | 2020-07-22 |
| Publiceringsdatum | 2020-07-22 |
| Utvecklare | zlrs |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/zlrs/AppleDocumentationOutline/ |
| Hjälpsida URL | https://github.com/zlrs/AppleDocumentationOutline/issues |
| Stödda Språk | 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"
}
} | |