Box Notes - Table of Contents
Adds a rudimentary table of contents to your Box Notes
Was ist Box Notes - Table of Contents?
Box Notes - Table of Contents ist eine Chrome-Erweiterung, die von Cristiano Betta entwickelt wurde, und ihr Hauptmerkmal ist "Adds a rudimentary table of contents to your Box Notes".
Erweiterungsscreenshots
Box Notes - Table of Contents-Erweiterungs-CRX-Datei herunterladen
Laden Sie Box Notes - Table of Contents-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
This extension looks for title and subtitles in Box Notes, and uses them to build a simple dropdown table of content at the top of your Box note. To use it, simply install the extension, refresh your Box Note, and make sure you use some Titles and Subtitle styles in your Note. This extension is not a Box product and is not supported by Box Inc. This extension is provided as-is and is available for commercial use.
Grundlegende Informationen zur Erweiterung
Name | Box Notes - Table of Contents |
ID | cidpkmmdeladeicipbmfaccjmmpdpnaa |
Offizielle URL | https://chromewebstore.google.com/detail/box-notes-table-of-conten/cidpkmmdeladeicipbmfaccjmmpdpnaa |
Beschreibung | Adds a rudimentary table of contents to your Box Notes |
Dateigröße | 11.19 KB |
Installationsanzahl | 186 |
Aktuelle Version | 1.4 |
Letztes Update | 2020-03-23 |
Veröffentlichungsdatum | 2020-03-23 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Cristiano Betta |
Zahlungsart | free |
Erweiterungswebsite | https://www.box.com/notes |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Box Notes - Table of Contents", "version": "1.4", "description": "Adds a rudimentary table of contents to your Box Notes", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/notes.services.box.com\/*" ], "all_frames": true, "js": [ "js\/watcher.js", "js\/builder.js", "js\/attacher.js" ] } ], "web_accessible_resources": [ "css\/style.css" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |