Table Tools

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

O que é Table Tools?

Table Tools é uma extensão do Chrome desenvolvida por Dai Rees, e sua principal característica é "Lets you override table cell text wrapping and left/right text alignment.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Table Tools

Baixe arquivos de extensão Table Tools no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Table Tools Table Tools
ID jjepabgdfhnikhbpfkbaahaioeheigdc
URL Oficial https://chromewebstore.google.com/detail/table-tools/jjepabgdfhnikhbpfkbaahaioeheigdc
Descrição Lets you override table cell text wrapping and left/right text alignment.
Tamanho do Arquivo 23.69 KB
Contagem de Instalações 1,215
Versão Atual 1.2
Última Atualização 2022-05-13
Data de Publicação 2018-06-17
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor Dai Rees
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}