Table Tools

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

Co to jest Table Tools?

Table Tools to rozszerzenie Chrome opracowane przez Dai Rees, a jego główną funkcją jest „Lets you override table cell text wrapping and left/right text alignment.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Table Tools

Pobierz pliki rozszerzeń Table Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Table Tools Table Tools
ID jjepabgdfhnikhbpfkbaahaioeheigdc
Oficjalny URL https://chromewebstore.google.com/detail/table-tools/jjepabgdfhnikhbpfkbaahaioeheigdc
Opis Lets you override table cell text wrapping and left/right text alignment.
Rozmiar pliku 23.69 KB
Liczba instalacji 1,215
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2022-05-13
Data Publikacji 2018-06-17
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper Dai Rees
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}