Save tabs as HTML
Save list of open tabs as an HTML file.
什么是Save tabs as HTML?
Save tabs as HTML是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Save list of open tabs as an HTML file.”。
扩展截图
下载Save tabs as HTML扩展crx文件
下载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" ] } } |