Monolith
Get a monolith (single static HTML file) of the web page
Monolithคืออะไร?
Monolith เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rhysd และคุณลักษณะหลักของมันคือ "Get a monolith (single static HTML file) of the web page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Monolith
ดาวน์โหลดไฟล์ส่วนขยาย Monolith ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
'Monolith of Web' is a Chrome extension ported from CLI tool [Monolith][1]. Monolith is a CLI tool to download a web page as static single HTML file. 'Monolith of Web' provides the same functionality as a browser extension by compiling Monolith (written in Rust) into WebAssembly. ## Usage 1. Go to a web page you want to store 2. Click 'Monolith of Web' icon in a browser bar (above popup window will open) 3. Click 'Get Monolith' button 4. Wait for the process completing 5. The generated single static HTML file is stored in your downloads folder By toggling icons at bottom of the popup window, you can determine to or not to include followings in the generated HTML file. - JavaScript - CSS - `
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | koalogomkahjlabefiglodpnhhkokekg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/monolith/koalogomkahjlabefiglodpnhhkokekg |
คำอธิบาย | Get a monolith (single static HTML file) of the web page |
ขนาดไฟล์ | 998 KB |
จำนวนการติดตั้ง | 905 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2020-01-27 |
วันที่เผยแพร่ | 2020-01-26 |
คะแนน | 4.75/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | rhysd |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/rhysd/monolith-of-web |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Monolith", "version": "0.1.3", "description": "Get a monolith (single static HTML file) of the web page", "manifest_version": 2, "permissions": [ "activeTab", "storage" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon\/icon-16.png", "32": "icon\/icon-32.png", "48": "icon\/icon-48.png", "96": "icon\/icon-96.png", "128": "icon\/icon-128.png", "256": "icon\/icon-256.png" }, "browser_action": { "default_icon": { "16": "icon\/icon-16.png", "32": "icon\/icon-32.png" }, "default_title": "Monolith", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": false }, "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'" } |