Page saver
Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined
Page saverคืออะไร?
Page saver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simmetric และคุณลักษณะหลักของมันคือ "Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Page saver
ดาวน์โหลดไฟล์ส่วนขยาย Page saver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } |