ViewTeX

View LaTeX files (.tex) directly in Chrome™!

Co to jest ViewTeX?

ViewTeX to rozszerzenie Chrome opracowane przez Penn Hackers, a jego główną funkcją jest „View LaTeX files (.tex) directly in Chrome™!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ViewTeX

Pobierz pliki rozszerzeń ViewTeX 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

                        View LaTeX files (.tex) directly in Chrome™! The LaTeX file opens up in the left pane, and the rendered PDF opens in the right pane.

Chrome is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

Podstawowe informacje o rozszerzeniu

Nazwa ViewTeX ViewTeX
ID hndddfcnkkjfkjmhnofcalgjheifajac
Oficjalny URL https://chromewebstore.google.com/detail/viewtex/hndddfcnkkjfkjmhnofcalgjheifajac
Opis View LaTeX files (.tex) directly in Chrome™!
Rozmiar pliku 501 KB
Liczba instalacji 544
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2014-09-17
Data Publikacji 2014-09-16
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper Penn Hackers
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ViewTeX",
    "version": "0.2.0",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "128": "img\/icon128.png"
    },
    "description": "View LaTeX files (.tex) directly in Chrome\u2122!",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.tex"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}