DjVu.js Viewer

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

什麼是DjVu.js Viewer?

DjVu.js Viewer是由RussCoder開發的Chrome擴展程式,該擴展的主要功能是“Opens links to .djvu files. Allows opening files from a local disk. Processes & tags.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載DjVu.js Viewer擴展crx文件

下載DjVu.js Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

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 проектом.                      

擴展基本資訊

名稱 DjVu.js Viewer DjVu.js Viewer
ID bpnedgjmphmmdgecmklcopblfcbhpefm
官方網址 https://chromewebstore.google.com/detail/djvujs-viewer/bpnedgjmphmmdgecmklcopblfcbhpefm
簡介 Opens links to .djvu files. Allows opening files from a local disk. Processes & tags.
檔案大小 243 KB
安裝次數 154,680
目前版本 0.10.0.1
更新時間 2024-02-10
上架時間 2020-07-04
評分 4.15/5 共 40 次評分
開發者 RussCoder
電子郵箱 [email protected]
付費類型 free
擴展官網 https://djvu.js.org/
說明頁面URL https://github.com/RussCoder/djvujs/issues
支援的語言 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"
        }
    }
}