HTML5 PDF Printing in Chrome

HTML5 to display and print PDF files directly in the browser.

HTML5 PDF Printing in Chrome란 무엇입니까?

HTML5 PDF Printing in Chrome은(는) Dylan Su에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HTML5 to display and print PDF files directly in the browser."입니다.

확장 프로그램 스크린샷

screenshot

HTML5 PDF Printing in Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                                            

확장 프로그램 기본 정보

이름 HTML5 PDF Printing in Chrome HTML5 PDF Printing in Chrome
ID ijijaapeochdlcbbagbccnggdljabank
공식 URL https://chromewebstore.google.com/detail/html5-pdf-printing-in-chr/ijijaapeochdlcbbagbccnggdljabank
설명 HTML5 to display and print PDF files directly in the browser.
파일 크기 3.02 MB
설치 횟수 305
현재 버전 0.0.1.8
최근 업데이트 2017-08-03
출시 날짜 2017-08-02
평점 1.00/5 총 2 개의 평점
개발자 Dylan Su
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 PDF Printing in Chrome",
    "version": "0.0.1.8",
    "description": "HTML5 to display and print PDF files directly in the browser.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "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'; 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",
        "http:\/*",
        "https:\/*",
        "ftp:\/*",
        "file:\/*",
        "chrome-extension:\/*",
        "filesystem:\/*",
        "drive:*"
    ]
}