Save tabs as HTML
Save list of open tabs as an HTML file.
Was ist Save tabs as HTML?
Save tabs as HTML ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Save list of open tabs as an HTML file.".
Erweiterungsscreenshots
Save tabs as HTML-Erweiterungs-CRX-Datei herunterladen
Laden Sie Save tabs as HTML-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Save tabs as HTML |
ID | dmnhgbenglfffoaodbgpfoihfnbdbfcb |
Offizielle URL | https://chromewebstore.google.com/detail/save-tabs-as-html/dmnhgbenglfffoaodbgpfoihfnbdbfcb |
Beschreibung | Save list of open tabs as an HTML file. |
Dateigröße | 12.13 KB |
Installationsanzahl | 640 |
Aktuelle Version | 0.3.2 |
Letztes Update | 2021-11-30 |
Veröffentlichungsdatum | 2021-11-12 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Unknown |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/nbeaver/save-tabs-as-html |
Hilfeseite URL | https://github.com/nbeaver/save-tabs-as-html/issues |
Unterstützte Sprachen | 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" ] } } |