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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } |