Page saver
Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined
Page saver란 무엇입니까?
Page saver은(는) Simmetric에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined"입니다.
확장 프로그램 스크린샷
Page saver 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Saves a complete web page in its current state as one file with all external dependencies (scripts, stylesheets, images) inlined into the page. Useful if you want to archive a page, test your website on any device or for SEO purposes.It's also useful to compute the footprint of your page: how much data does a first time visitor have to download? Works perfectly with popular Javascript frameworks such as JQuery, Modernizr, AngularJS, Knockout, Bootstrap, etc. Note that while an inlined page can still connect to JSON or XML webservices, the inlined page does not persist security information or sessions so you may run into authentication issues. Version 1.5.0 * Better handling of relative file paths * The browser action button is now clickable * Lighter color scheme Version 1.4.1 * Fixed: tags were skipped if not all lowercase Version 1.4.0 * Vastly improved speed * Resolved issues with inlining never ending * Resolved issue with adblockers interfering with inlining * Added support for images in
확장 프로그램 기본 정보
이름 | Page saver |
ID | kbchedinmkicifjhlmlcnklhephjpngp |
공식 URL | https://chromewebstore.google.com/detail/page-saver/kbchedinmkicifjhlmlcnklhephjpngp |
설명 | Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined |
파일 크기 | 56.62 KB |
설치 횟수 | 7,294 |
현재 버전 | 1.5.0 |
최근 업데이트 | 2021-01-24 |
출시 날짜 | 2018-12-03 |
평점 | 3.00/5 총 31 개의 평점 |
개발자 | Simmetric |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page saver", "short_name": "PageSaver", "description": "Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined", "version": "1.5.0", "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "html\/info.html", "default_title": "Page Saver" }, "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "contextMenus", "downloads", "storage", "tabs", "*:\/\/*\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "icons": { "128": "img\/icon128.png" }, "options_page": "html\/options.html" } |