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文件

下载Tab Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Tab Downloader Tab Downloader
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
}