PDF saver
Save PDFs, parse all metadata and save them to Pocket
¿Qué es PDF saver?
PDF saver es una extensión de Chrome desarrollada por Nikita Kartashov, y su función principal es "Save PDFs, parse all metadata and save them to Pocket".
Descargar Archivo CRX de la Extensión PDF saver
Descarga archivos de extensión PDF saver en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | |
ID | nnopjfgdbhajdicjliimdmmgkkkljlnc |
URL Oficial | https://chrome.google.com/webstore/detail/pdf-saver/nnopjfgdbhajdicjliimdmmgkkkljlnc |
Descripción | Save PDFs, parse all metadata and save them to Pocket |
Tamaño del Archivo | 592 KB |
Cantidad de Instalaciones | 273 |
Versión Actual | 1.0.0.1 |
Última Actualización | 2017-04-05 |
Fecha de Publicación | 2017-04-05 |
Desarrollador | Nikita Kartashov |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/nkartashov/pdf-saver |
Idiomas Soportados | 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\/*" ] } |