Tab Downloader
A browser extension to download images in open tabs.
Tab Downloader란 무엇입니까?
Tab Downloader은(는) Jason Gardner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension to download images in open tabs."입니다.
Tab Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tab Downloader saves the contents of your open tabs in a single click! Start by specifying which file types to download in the extension's options page. As you browse, Tab Downloader will display the number of tabs ready to download. Click the Tab Downloader button and — WOOSH! Chrome will save/download any open tabs which contain the file types you selected and (if selected) will close the tabs once the download beings. Current file types supported: 📸 bmp, gif, jpg, jpeg, png, svg, WebP 🎥 avi, mkv, mp4, mpeg, WebM 🔊 mp3, flac, ogg, wav 📰 pdf, csv, txt, md, html, xml
확장 프로그램 기본 정보
이름 | |
ID | hlepdmnpkgdfieldklclbncpkonfmbnh |
공식 URL | https://chrome.google.com/webstore/detail/tab-downloader/hlepdmnpkgdfieldklclbncpkonfmbnh |
설명 | A browser extension to download images in open tabs. |
파일 크기 | 63.81 KB |
설치 횟수 | 359 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2018-07-22 |
출시 날짜 | 2018-07-22 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Jason Gardner |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Downloader", "short_name": "TabDownloadr", "version": "1.0.0", "manifest_version": 2, "description": "A browser extension to download images in open tabs.", "homepage_url": "http:\/\/jasongardner.co\/tab-downloader", "author": "Jason Gardner", "icons": { "16": "icons\/icon-16.png", "24": "icons\/icon-24.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_page": "options\/index.html", "browser_action": { "name": "Tab Downloader", "default_icon": { "16": "icons\/icon-16.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png" }, "default_title": "Download content from open tabs" }, "permissions": [ "tabs", "downloads", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "minimum_chrome_version": "4.0", "offline_enabled": false } |