Render PDFs Inline

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

Render PDFs Inline क्या है?

Render PDFs Inline https://semenkovich.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Force PDFs to display inline instead of downloading. By Nick Semenkovich "।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Render PDFs Inline एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}