PDF Viewer for Vimium C

A PDF Viewer supporting Vimium C shortcuts.

PDF Viewer for Vimium C là gì?

PDF Viewer for Vimium C là một tiện ích mở rộng Chrome được phát triển bởi gdh1995, và tính năng chính của nó là "A PDF Viewer supporting Vimium C shortcuts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PDF Viewer for Vimium C

Tải xuống các tệp mở rộng PDF Viewer for Vimium C dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A customized PDF Viewer which allows Vimium C ro run on its view.

This viewer uses an unofficial version of PDF.js project to show content of PDF files, and actively requests Vimium C's support.

The PDF.js is v2.15.349+, up-to-date on 2022/08/08 and built from commit 40f9f7e9097e1168e98f1e2987726c5c31693617 of https://github.com/mozilla/pdf.js. And my modification is up to https://github.com/gdh1995/pdf.js/commit/c785e93bb11febb98b373db74aca358d8ac086fc.

Recent update:
1. (2022/08) This version turns off the experimental feature of "using iframe to show top-frame PDFs" by default, because in some edge cases (e.g. on some web servers) it would fail in accessing PDF files. While you may re-enable it as you like. There should be no other difference after a PDF file gets showing.
2. (2022/08) update the version of PDF.js
3. (2022/04) fix some issues of Vimium C's `scroll*` and `Marks*` commands.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PDF Viewer for Vimium C PDF Viewer for Vimium C
ID nacjakoppgmdcpemlfnfegmlhipddanj
URL Chính Thức https://chromewebstore.google.com/detail/pdf-viewer-for-vimium-c/nacjakoppgmdcpemlfnfegmlhipddanj
Mô tả A PDF Viewer supporting Vimium C shortcuts.
Kích Thước Tệp 2.88 MB
Số Lần Cài Đặt 6,339
Phiên Bản Hiện Tại 2.15.349
Cập Nhật Lần Cuối 2022-08-09
Ngày Phát Hành 2020-05-17
Đánh Giá 4.19/5 Tổng số 27 Đánh Giá
Nhà Phát Triển gdh1995
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/gdh1995/vimium-c-helpers/issues
URL Trang Chính Sách Bảo Mật https://github.com/gdh1995/vimium-c/blob/master/PRIVACY-POLICY.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PDF Viewer for Vimium C",
    "version": "2.15.349",
    "description": "A PDF Viewer supporting Vimium C shortcuts.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "minimum_chrome_version": "76",
    "permissions": [
        "fileBrowserHandler",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "css": [
                "contentstyle.css"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' chrome-extension:\/\/hfjbmagddngcpeloejdejnfgbamkjaeg\/ chrome-extension:\/\/aibcglbfblnogfjhbcmmpobjhnomhcdo\/; object-src 'self'",
    "file_browser_handlers": [
        {
            "id": "open-as-pdf",
            "default_title": "Open with PDF Viewer",
            "file_filters": [
                "filesystem:*.pdf"
            ]
        }
    ],
    "storage": {
        "managed_schema": "preferences_schema.json"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "options_page": "options\/options.html",
    "background": {
        "page": "pdfHandler.html"
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Show PDF URL",
        "default_popup": "pageActionPopup.html"
    },
    "incognito": "split",
    "web_accessible_resources": [
        "content\/web\/viewer.html",
        "icon16.png",
        "icon48.png",
        "http:\/*",
        "https:\/*",
        "ftp:\/*",
        "file:\/*",
        "chrome-extension:\/*",
        "blob:*",
        "data:*",
        "filesystem:\/*",
        "drive:*"
    ]
}