Save tabs as HTML
Save list of open tabs as an HTML file.
Save tabs as HTMLคืออะไร?
Save tabs as HTML เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Save list of open tabs as an HTML file."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save tabs as HTML
ดาวน์โหลดไฟล์ส่วนขยาย Save tabs as HTML ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This addon generates an HTML file containing links pointing to the tabs open in all windows. The file includes the title and URL of each tab, as well as the browser user agent and the date and time the file was saved. This can be useful as an ad-hoc way to save a browser session. Unlike similar addons that save to a text file, this extension saves the open tabs as HTML, which can be re-opened in the browser later and the URLs re-opened with a click. This addon does not store or archive the pages themselves. It only saves the URL and title of the page. Incognito tabs are excluded.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Save tabs as HTML |
ID | dmnhgbenglfffoaodbgpfoihfnbdbfcb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/save-tabs-as-html/dmnhgbenglfffoaodbgpfoihfnbdbfcb |
คำอธิบาย | Save list of open tabs as an HTML file. |
ขนาดไฟล์ | 12.13 KB |
จำนวนการติดตั้ง | 640 |
เวอร์ชันปัจจุบัน | 0.3.2 |
อัปเดตครั้งล่าสุด | 2021-11-30 |
วันที่เผยแพร่ | 2021-11-12 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Unknown |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/nbeaver/save-tabs-as-html |
URL หน้าช่วยเหลือ | https://github.com/nbeaver/save-tabs-as-html/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Save tabs as HTML", "description": "Save list of open tabs as an HTML file.", "manifest_version": 2, "version": "0.3.2", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "downloads" ], "browser_action": { "default_icon": "icons\/icon128.png", "default_title": "Save tabs as HTML." }, "background": { "scripts": [ "save_tabs.js" ] } } |