Twitter Original Media Click
The easiest way to get media from twitter timeline.
Twitter Original Media Click là gì?
Twitter Original Media Click là một tiện ích mở rộng Chrome được phát triển bởi Elton H.Y. Chou, và tính năng chính của nó là "The easiest way to get media from twitter timeline.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitter Original Media Click
Tải xuống các tệp mở rộng Twitter Original Media Click dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
** For new UI user: https://chrome.google.com/webstore/detail/media-harvest-twitter-med/hpcgabhdlnapolkkjpejieegfpehfdok ** JUST ONE CLICK! The easiest way to get original media from twitter-timeline. 2019.06.21 FIX: 1.Video url parsing error 2019.05.27 FIX: 1.Video-download issue 2019.04.14 FEATURE-ADD: 1. Video-support
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | iifjffbfapcgmokkhlpglngogjcndbkd |
URL Chính Thức | https://chrome.google.com/webstore/detail/twitter-original-media-cl/iifjffbfapcgmokkhlpglngogjcndbkd |
Mô tả | The easiest way to get media from twitter timeline. |
Kích Thước Tệp | 12.71 KB |
Số Lần Cài Đặt | 279 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2019-10-10 |
Ngày Phát Hành | 2019-10-10 |
Đánh Giá | 3.29/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Elton H.Y. Chou |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/EltonChou/origclick |
URL Trang Trợ Giúp | https://github.com/EltonChou/origclick |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Original Media Click", "short_name": "OrigClick", "description": "The easiest way to get media from twitter timeline.", "version": "1.0.2", "icons": { "16": "assets\/icons\/icon16.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_title": "OrigClick" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "main.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "*:\/\/*.twitter.com\/*", "*:\/\/twitter.com\/*", "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*", "activeTab", "tabs", "downloads", "cookies" ] } |