X Media Downloader
Get videos from the user's media timeline on X (ex Twitter)
X Media Downloader란 무엇입니까?
X Media Downloader은(는) Creative Extensions Studio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get videos from the user's media timeline on X (ex Twitter)"입니다.
확장 프로그램 스크린샷
X Media Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀 Introducing the Twitter Video Downloader, your ultimate Chrome extension for hassle-free video downloads from X (ex Twitter). Say goodbye to complex procedures and waiting times. With our user-friendly extension, downloading videos from X is a breeze!
📥 Once you install our extension, a convenient download button magically appears beneath every tweet that contains a video. Just a single click, and voilà! Your chosen video is swiftly downloaded as soon as it finishes loading.
✨ To enjoy seamless operation, simply login to your X account. Start saving your favorite X videos effortlessly today! 확장 프로그램 기본 정보
| 이름 | |
| ID | lmjabmhgipbdbigfckmgkladhhnglmnb |
| 공식 URL | https://chromewebstore.google.com/detail/x-media-downloader/lmjabmhgipbdbigfckmgkladhhnglmnb |
| 설명 | Get videos from the user's media timeline on X (ex Twitter) |
| 파일 크기 | 41.06 KB |
| 설치 횟수 | 8,000 |
| 현재 버전 | 1.0.7 |
| 최근 업데이트 | 2023-11-10 |
| 출시 날짜 | 2023-09-17 |
| 평점 | 3.60/5 총 10 개의 평점 |
| 개발자 | Creative Extensions Studio |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 개인정보 보호 정책 페이지 URL | https://sites.google.com/view/polity-extension/home |
| 지원되는 언어 | id,de,en,fr,es,it,th,zh-CN,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0.7",
"name": "X Media Downloader",
"description": "__MSG_description__",
"default_locale": "en",
"manifest_version": 3,
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png",
"256": "icons\/256.png"
},
"background": {
"service_worker": "bg_service_worker.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*:\/\/*.twitter.com\/*"
],
"js": [
"inject.js"
],
"css": [
"content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
}
],
"host_permissions": [
"*:\/\/*.twitter.com\/*"
]
} | |