PDF saver

Save PDFs, parse all metadata and save them to Pocket

Qu'est-ce que PDF saver ?

PDF saver est une extension Chrome développée par Nikita Kartashov, et sa fonction principale est "Save PDFs, parse all metadata and save them to Pocket".

Télécharger le fichier CRX de l'extension PDF saver

Téléchargez les fichiers d'extension PDF saver 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

                        Have you noticed that Pocket doesn't really grok PDFs? Thankfully a lazy dev with no actual knowledge of javascript is here to help! Enter "PDF saver": now with a click of a button your PDF filled to a brim with sweet sweet metadata (title & tags) goes straight to Pocket.

*Updated so your favourite PDFs from arXiv to Pocket will have a correct title even if there is an empty title field in the PDF itself!                    

Informations de Base sur l'Extension

Nom PDF saver PDF saver
ID nnopjfgdbhajdicjliimdmmgkkkljlnc
URL Officiel https://chrome.google.com/webstore/detail/pdf-saver/nnopjfgdbhajdicjliimdmmgkkkljlnc
Description Save PDFs, parse all metadata and save them to Pocket
Taille du Fichier 592 KB
Nombre d'Installations 273
Version Actuelle 1.0.0.1
Dernière Mise à Jour 2017-04-05
Date de Publication 2017-04-05
Développeur Nikita Kartashov
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nkartashov/pdf-saver
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PDF saver",
    "description": "Save PDFs, parse all metadata and save them to Pocket",
    "version": "1.0.0.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/libs\/jquery.min.js",
            "js\/libs\/pdfjs\/build\/pdf.js",
            "js\/libs\/pdfjs\/build\/pdf.worker.js",
            "js\/util.js",
            "js\/urls.js",
            "js\/pocket-errors.js",
            "js\/pocket-auth.js",
            "js\/pocket-api.js",
            "js\/data.js",
            "js\/app.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "identity",
        "storage",
        "https:\/\/getpocket.com\/*",
        "https:\/\/arxiv.org\/pdf\/*",
        "https:\/\/arxiv.org\/abs\/*"
    ]
}