Render PDFs Inline

Force PDFs to display inline instead of downloading. By Nick Semenkovich

Render PDFs Inline란 무엇입니까?

Render PDFs Inline은(는) https://semenkovich.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Force PDFs to display inline instead of downloading. By Nick Semenkovich "입니다.

Render PDFs Inline 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Force PDFs to render inline instead of downloading. By Nick Semenkovich 

Annoyed by PDFs that save and download instead of opening?

This extension forces PDFs to render inline instead of downloading (by overwriting the "Content-disposition: attachment" header).

This extension works using the webRequest API -- and it's a bit slower than the alternative extension. If you're using the Beta or Dev versions of Chrome, my alternative extension uses the Declarative Web Request API -- which is faster.

Features:
- Only rewrites content that's in a main window (main_frame)
- Rewrites all responses with "Content-type: application/pdf"
- Rewrites responses with "Content-type: application/octet-stream" with a filename=*.pdf


WARNING: This may have security risks by overriding the attachment header. Use at your own risk.


======== CODE ========
Please contribute! https://github.com/semenko/chrome-force-pdf-inline

Copyright 2014-2015, Nick Semenkovich 

Released under the MIT License. See LICENSE for details.                    

확장 프로그램 기본 정보

이름 Render PDFs Inline Render PDFs Inline
ID mhigkpfinipcldigeeonlokhpdpnkelg
공식 URL https://chromewebstore.google.com/detail/render-pdfs-inline/mhigkpfinipcldigeeonlokhpdpnkelg
설명 Force PDFs to display inline instead of downloading. By Nick Semenkovich
파일 크기 20.37 KB
설치 횟수 6,047
현재 버전 2016.4.7
최근 업데이트 2016-04-08
출시 날짜 2016-04-08
평점 4.07/5 총 14 개의 평점
개발자 https://semenkovich.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/semenko/chrome-force-pdf-inline
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "author": "Nick Semenkovich",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Force PDFs to display inline instead of downloading. By Nick Semenkovich ",
    "manifest_version": 2,
    "name": "Render PDFs Inline",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "version": "2016.4.7"
}