Page Auto Archiver
Automatically saves the contents of the web pages you have viewed to WebDAV, and allows you to find pages you have previously viewed
Page Auto Archiver란 무엇입니까?
Page Auto Archiver은(는) PingFlash에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically saves the contents of the web pages you have viewed to WebDAV, and allows you to find pages you have previously viewed"입니다.
확장 프로그램 스크린샷
Page Auto Archiver 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Updates: v2.1: * Fix: Unable to view cached content for some search results -------------------------------- Page Auto Archiver automatically saves the contents of the web pages you have viewed to WebDAV, and provides a search function that allows you to easily find pages you have previously viewed. I often got stuck when I suddenly remembered that there was something I wanted on a web page I had visited a few days ago, but I couldn't remember the URL. Although I remembered a few keywords on the web page, I couldn't find it with Google. So I thought, if there is a way to let me search the web pages I had visited before, that would be good. Then, I make this extension. This extension automatically saves the full-text content of the web pages you are visiting to WebDAV in the background. When you want to find something, you can use the search function to search for it. You can use your own built WebDAV service, or you can use a free WebDAV service I provide. If you have any comments or suggestions, please feel free to send an email to [email protected] -------------------------- Old Updates: v2.0: * New: Allow open search result link in new window * New: Automatic restore explorer and search page state v1.9: * Fix: List files failed with some thirdpard WebDAV provider * Fix: URL with special characters not decoded in search result v1.8: * Fix: WebDAV configuration can not be saved v1.7: * Add Guide Mode, now it is easier to set up WebDAV endpoint * Fix: unable to connect while there is '@' character in username or password
확장 프로그램 기본 정보
이름 | Page Auto Archiver |
ID | inbfhpapklekaajibkklfjieklbbmmke |
공식 URL | https://chromewebstore.google.com/detail/page-auto-archiver/inbfhpapklekaajibkklfjieklbbmmke |
설명 | Automatically saves the contents of the web pages you have viewed to WebDAV, and allows you to find pages you have previously viewed |
파일 크기 | 729 KB |
설치 횟수 | 117 |
현재 버전 | 2.1 |
최근 업데이트 | 2023-03-07 |
출시 날짜 | 2023-01-06 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | PingFlash |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://paa.pingflash.com/privacy |
지원되는 언어 | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "2.1", "permissions": [ "storage", "activeTab", "contextMenus" ], "background": { "service_worker": "background.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self' ; object-src 'self'" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "options_page": "options\/dist\/index.html", "action": [], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } } |