DjVu.js Viewer

Opens links to .djvu files. Allows opening files from a local disk. Processes & tags.

¿Qué es DjVu.js Viewer?

DjVu.js Viewer es una extensión de Chrome desarrollada por RussCoder, y su función principal es "Opens links to .djvu files. Allows opening files from a local disk. Processes & tags.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión DjVu.js Viewer

Descarga archivos de extensión DjVu.js Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        **Описание на русском ниже**

The extension collects NO DATA at all. It's completely autonomous (no internet connection required to open a file). It requires access to third-party websites only to render embedded documents ( tag) and open links to .djvu files (on any website).

The extension, by and large, is a local copy of the DjVu.js Viewer which is available on https://djvu.js.org/.

It allows you to open links to the files right in the browser (via context menu) and the files from a local drive (after you open a page with the viewer you can choose a file). Also, in case of an indirect (multi-file) document you can bundle it into one file via the extension. Furthermore, it processes  and  tags and replaces them with the viewer. So the extension may be, in a sense, a substitution of the Cuminas' native DjVu plug-in.

Since all operations are performed on your machine, the extension can work without an Internet connection.

The Google Chrome version of the extension allows to open local files by a browser directly (via a double-click)! But you have to enable the "Allow access to file URLs", option on the extension's options page. Otherwise, the new feature won't work.
Also, the browser should have been already started by the moment you try to open a file.

All source code is available on https://github.com/RussCoder/djvujs

The extension is based on DjVu.js - the library which allows to process the files right in the browser. The library is still being developed, so there may be some bugs. If you have a document which is incorrectly opened with the extension, I will appreciate a lot, if you send the problem file to me at [email protected] - if you do it, I will be able to fix bugs and improve the library, which is an open source project.

=======================

Расширение не собирает НИКАКИХ ДАННЫХ. Оно полностью автономно (не нужен интернет, чтобы отобразить файл). Доступ к сайтам нужен только для того, чтобы отображать встроенные документы (тэг ) и открывать ссылки на .djvu файлы (с любого сайта). 

Расширение является локальной копией DjVu.js Viewer который доступен на https://djvu.js.org/.

Расширение позволяет открывать ссылки на файлы прямо в браузере (через контекстное меню, пункт Open with DjVu.js Viewer), а также просматривать файлы с диска (после того как Вы открыли вкладку с DjVu.js Viewer, можно выбрать файл через Choose file). В случае многофайлового документа (indirect), есть возможность скачать его единым файлом. Кроме того, расширение обрабатывает  и  и заменяет их на DjVu.js Viewer. Следовательно, расширение может в некотором смысле служить заменой Cuminas (Caminova) DjVu Plug-in. 

Так как все операции выполняются на вашем компьютере, расширение может работать и без соединения с Интернетом.

Также локальные файлы можно открывать прямо браузером (через двойной клик). Но для этого надо включить опцию "Разрешить открывать локальные файлы по ссылкам" в настройках расширения. Иначе новая возможность не будет работать. Кроме того, сам браузер должен быть уже запущен на момент открытия файла.

Исходный код доступен на https://github.com/RussCoder/djvujs

Расширение основано на DjVu.js - библиотеке, которая позволяет работать с файлами прямо в браузере. Библиотека все еще находится в процессе разработки, поэтому возможно наличие некоторых ошибок. Если Вы встретили файл, который некорректно открывается данным приложением, то, пожалуйста, отправьте его на [email protected] - если Вы это сделаете, то у меня будет возможность исправить ошибки и улучшить библиотеку DjVu.js, которая является open source проектом.                      

Información Básica de la Extensión

Nombre DjVu.js Viewer DjVu.js Viewer
ID bpnedgjmphmmdgecmklcopblfcbhpefm
URL Oficial https://chromewebstore.google.com/detail/djvujs-viewer/bpnedgjmphmmdgecmklcopblfcbhpefm
Descripción Opens links to .djvu files. Allows opening files from a local disk. Processes & tags.
Tamaño del Archivo 243 KB
Cantidad de Instalaciones 154,680
Versión Actual 0.10.0.1
Última Actualización 2024-02-10
Fecha de Publicación 2020-07-04
Calificación 4.15/5 Total de 40 Calificaciones
Desarrollador RussCoder
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://djvu.js.org/
URL de la Página de Ayuda https://github.com/RussCoder/djvujs/issues
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DjVu.js Viewer",
    "short_name": "DV",
    "version": "0.10.0.1",
    "author": "RussCoder",
    "homepage_url": "https:\/\/github.com\/RussCoder\/djvujs",
    "description": "Opens links to .djvu files. Allows opening files from a local disk. Processes  &  tags.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "viewer.html"
    ],
    "icons": {
        "16": "djvu16.png",
        "32": "djvu32.png",
        "48": "djvu48.png",
        "64": "djvu64.png",
        "96": "djvu96.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "djvu16.png",
            "32": "djvu32.png",
            "48": "djvu48.png",
            "64": "djvu64.png",
            "96": "djvu96.png"
        }
    }
}