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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

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
공식 URL 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"
        }
    }
}