ReadPaper Importer
Save PDFs to your ReadPaper account from your web browser.
ReadPaper Importer란 무엇입니까?
ReadPaper Importer은(는) https://readpaper.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save PDFs to your ReadPaper account from your web browser."입니다.
확장 프로그램 스크린샷
ReadPaper Importer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
ReadPaper.com is a free website which helps you to collect,organize,annotate your essays,papers and journals.And you can read them not only through the website,but also through iPad/win-pc/mac readpaper applicaton. The ReadPaper Browser Extension can automatically senses the PDFs while you browse the web,and you can import those PDFs to your ReadPaper account immediately with just one single click. Besides,ReadPaper.com allows every account to upload 500 essays for free -- which will not last very long . Additionally,ReadPaper.com is a professional scholar tool for researchers , it maitains the features below: 1.Orginize the PDFs with folders and tags,and sychronize to your iPad/win-pc/mac 2.Read the PDFs with an AI-Driven reader which strongly improve your reading efficiency 3.Search for papers in various fields with structured meta data enhanced by IDEA-Knowledge-graph 4.Create an online study group and share your papers,ideas,comments with other people
확장 프로그램 기본 정보
이름 | ReadPaper Importer |
ID | nchidjaafkcjdgdbbdpkpokodiehhcdg |
공식 URL | https://chromewebstore.google.com/detail/readpaper-importer/nchidjaafkcjdgdbbdpkpokodiehhcdg |
설명 | Save PDFs to your ReadPaper account from your web browser. |
파일 크기 | 710 KB |
설치 횟수 | 12,463 |
현재 버전 | 1.2.5 |
최근 업데이트 | 2024-01-22 |
출시 날짜 | 2022-10-26 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://readpaper.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://readpaper.com |
도움말 페이지 URL | https://readpaper.com |
개인정보 보호 정책 페이지 URL | http://cdn.paper.idea.edu.cn/privacy/%E9%9A%90%E7%A7%81%E6%94%BF%E7%AD%96.pdf |
지원되는 언어 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReadPaper Importer", "version": "1.2.5", "description": "Save PDFs to your ReadPaper account from your web browser.", "default_locale": "en", "action": { "default_icon": ".\/logo\/16.png" }, "background": { "service_worker": ".\/background.js", "type": "module" }, "icons": { "16": ".\/logo\/16.png", "32": ".\/logo\/32.png", "512": ".\/logo\/512.png", "19": ".\/logo\/16.png", "38": ".\/logo\/32.png" }, "permissions": [ "tabs", "activeTab", "downloads", "webRequest", "declarativeNetRequest" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "\/assets\/content-script\/webextension-polyfill\/dist\/browser-polyfill.js", "\/assets\/content-script\/axios\/dist\/axios.js", "\/assets\/content-script\/vue\/dist\/vue.runtime.global.js", "\/content-script\/index.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/content-script\/style.css", "\/assets\/content-script\/webextension-polyfill\/dist\/browser-polyfill.js", "\/assets\/content-script\/axios\/dist\/axios.js", "\/assets\/content-script\/vue\/dist\/vue.runtime.global.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |