Twitter Original Media Click
The easiest way to get media from twitter timeline.
What is Twitter Original Media Click?
Twitter Original Media Click is a Chrome extension developed by Elton H.Y. Chou, and its main feature is "The easiest way to get media from twitter timeline.".
Extension Screenshots
Download Twitter Original Media Click Extension CRX File
Download Twitter Original Media Click extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
** 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
Extension Basic Information
Name | |
ID | iifjffbfapcgmokkhlpglngogjcndbkd |
Official URL | https://chrome.google.com/webstore/detail/twitter-original-media-cl/iifjffbfapcgmokkhlpglngogjcndbkd |
Description | The easiest way to get media from twitter timeline. |
File Size | 12.71 KB |
Installation Count | 279 |
Current Version | 1.0.2 |
Last Updated | 2019-10-10 |
Publish Date | 2019-10-10 |
Rating | 3.29/5 Total 7 Ratings |
Developer | Elton H.Y. Chou |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/EltonChou/origclick |
Help Page URL | https://github.com/EltonChou/origclick |
Supported Languages | 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" ] } |