Twitter Media Downloader
Download images/videos of user's media-timeline on Twitter.
什麼是Twitter Media Downloader?
Twitter Media Downloader是由https://memo.furyutei.work開發的Chrome擴展程式,該擴展的主要功能是“Download images/videos of user's media-timeline on Twitter.”。
擴展截圖
下載Twitter Media Downloader擴展crx文件
下載Twitter Media Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        If you find favorite illustrators and photographers on Twitter, you will want to save their all images.
With this extension, in the Twitter official Web site, images/videos of a user's media timeline (https://twitter.com//media) or search timeline, to be able to download at once(*).
(*) Images/videos collectively will be stored in a ZIP file .                      擴展基本資訊
| 名稱 |   |  
| ID | cblpjenafgeohmnjknfhpdbdljfkndig | 
| 官方網址 | https://chrome.google.com/webstore/detail/cblpjenafgeohmnjknfhpdbdljfkndig | 
| 簡介 | Download images/videos of user's media-timeline on Twitter. | 
| 檔案大小 | 250 KB | 
| 安裝次數 | 238,514 | 
| 目前版本 | 0.1.5.4 | 
| 更新時間 | 2022-09-29 | 
| 上架時間 | 2020-05-19 | 
| 評分 | 4.27/5 共 925 次評分 | 
| 開發者 | https://memo.furyutei.work | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://memo.furyutei.work/entry/20160723/1469282864 | 
| 說明頁面URL | https://github.com/furyutei/twMediaDownloader/issues | 
| 支援的語言 | en,ja | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_title__",
    "short_name": "__MSG_ext_short_name__",
    "version": "0.1.5.4",
    "description": "__MSG_ext_description__",
    "author": "furyu",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon_16.png",
        "19": "img\/icon_19.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*",
        "*:\/\/pbs.twimg.com\/*",
        "*:\/\/video.twimg.com\/*",
        "*:\/\/*.cdn.vine.co\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/tweetdeck.twitter.com\/*",
                "*:\/\/api.twitter.com\/*",
                "*:\/\/pbs.twimg.com\/media\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "js\/browser_info.js",
                "js\/jquery.min.js",
                "js\/twitter-oauth\/sha1.js",
                "js\/twitter-oauth\/oauth.js",
                "js\/twitter-oauth\/twitter-api.js",
                "js\/session.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/tweetdeck.twitter.com\/*",
                "*:\/\/pbs.twimg.com\/media\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "js\/decimal.min.js",
                "js\/jszip.min.js",
                "js\/init.js",
                "js\/timeline.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "js\/main_react.user.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "js\/main_tweetdeck.user.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": "img\/icon_16.png",
        "default_title": "__MSG_ext_title__",
        "default_popup": "html\/options.html"
    },
    "commands": {
        "bulk_download": {
            "suggested_key": {
                "default": "Shift+Alt+D",
                "mac": "Shift+Alt+D"
            },
            "description": "__MSG_BULK_DOWNLOAD__"
        },
        "bulk_download_likes": {
            "suggested_key": {
                "default": "Shift+Alt+L",
                "mac": "Shift+Alt+L"
            },
            "description": "__MSG_BULK_DOWNLOAD_LIKES__"
        }
    },
    "incognito": "split"
}  |  |