Table Tools

Lets you override table cell text wrapping and left/right text alignment.

Cos'è Table Tools?

Table Tools è un'estensione di Chrome sviluppata da Dai Rees, e la sua funzione principale è "Lets you override table cell text wrapping and left/right text alignment.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Table Tools

Scarica i file di estensione Table Tools 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

                        Lets you override line-break and horizontal alignment styling in tables on a per-column basis. Useful for the awkwardly sized columns on MSDN!                    

Informazioni di Base sull'Estensione

Nome Table Tools Table Tools
ID jjepabgdfhnikhbpfkbaahaioeheigdc
URL Ufficiale https://chromewebstore.google.com/detail/table-tools/jjepabgdfhnikhbpfkbaahaioeheigdc
Descrizione Lets you override table cell text wrapping and left/right text alignment.
Dimensione del File 23.69 KB
Conteggio Installazioni 1,215
Versione Corrente 1.2
Ultimo Aggiornamento 2022-05-13
Data di Pubblicazione 2018-06-17
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore Dai Rees
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Table Tools",
    "description": "Lets you override table cell text wrapping and left\/right text alignment.",
    "version": "1.2",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js",
                "js\/TTTable.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}