Render PDFs Inline

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

Qu'est-ce que Render PDFs Inline ?

Render PDFs Inline est une extension Chrome développée par https://semenkovich.com, et sa fonction principale est "Force PDFs to display inline instead of downloading. By Nick Semenkovich ".

Télécharger le fichier CRX de l'extension Render PDFs Inline

Téléchargez les fichiers d'extension Render PDFs Inline au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Render PDFs Inline Render PDFs Inline
ID mhigkpfinipcldigeeonlokhpdpnkelg
URL Officiel https://chromewebstore.google.com/detail/render-pdfs-inline/mhigkpfinipcldigeeonlokhpdpnkelg
Description Force PDFs to display inline instead of downloading. By Nick Semenkovich
Taille du Fichier 20.37 KB
Nombre d'Installations 6,047
Version Actuelle 2016.4.7
Dernière Mise à Jour 2016-04-08
Date de Publication 2016-04-08
Évaluation 4.07/5 Total 14 Évaluations
Développeur https://semenkovich.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/semenko/chrome-force-pdf-inline
Langues Prises en Charge 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"
}