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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Twitter Media Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 .                    

확장 프로그램 기본 정보

이름 Twitter Media Downloader Twitter Media Downloader
ID cblpjenafgeohmnjknfhpdbdljfkndig
공식 URL 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"
}