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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Saves the current web page as one file with all external dependencies (style, script, images) downloaded and inlined"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Page saver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |