PDF saver
Save PDFs, parse all metadata and save them to Pocket
什么是PDF saver?
PDF saver是由Nikita Kartashov开发的Chrome扩展程序,该扩展的主要功能是“Save PDFs, parse all metadata and save them to Pocket”。
下载PDF saver扩展crx文件
下载PDF saver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
ID | nnopjfgdbhajdicjliimdmmgkkkljlnc |
官方URL | https://chrome.google.com/webstore/detail/pdf-saver/nnopjfgdbhajdicjliimdmmgkkkljlnc |
简介 | Save PDFs, parse all metadata and save them to Pocket |
文件大小 | 592 KB |
安装次数 | 273 |
当前版本 | 1.0.0.1 |
更新时间 | 2017-04-05 |
上架时间 | 2017-04-05 |
开发者 | Nikita Kartashov |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/nkartashov/pdf-saver |
支持的语言 | 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\/*" ] } |