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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |