Box Notes - Table of Contents

Adds a rudimentary table of contents to your Box Notes

Cos'è Box Notes - Table of Contents?

Box Notes - Table of Contents è un'estensione di Chrome sviluppata da Cristiano Betta, e la sua funzione principale è "Adds a rudimentary table of contents to your Box Notes".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Box Notes - Table of Contents

Scarica i file di estensione Box Notes - Table of Contents in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Box Notes - Table of Contents Box Notes - Table of Contents
ID cidpkmmdeladeicipbmfaccjmmpdpnaa
URL Ufficiale https://chromewebstore.google.com/detail/box-notes-table-of-conten/cidpkmmdeladeicipbmfaccjmmpdpnaa
Descrizione Adds a rudimentary table of contents to your Box Notes
Dimensione del File 11.19 KB
Conteggio Installazioni 186
Versione Corrente 1.4
Ultimo Aggiornamento 2020-03-23
Data di Pubblicazione 2020-03-23
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Cristiano Betta
Tipo di Pagamento free
Sito Web dell'Estensione https://www.box.com/notes
Lingue Supportate 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"
    }
}