Twim
a twitter image downloader chrome extension
What is Twim?
Twim is a Chrome extension developed by snowlt23, and its main feature is "a twitter image downloader chrome extension".
Download Twim Extension CRX File
Download Twim 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
Twitterの画像を効率的にダウンロードしやすくするChrome拡張です。 機能 ・Twimをアイコンクリックにより有効化すると、ワンクリックで画像がダウンロードできます ・ダウンロードした画像のファイル名の先頭に投稿者のアカウント名を付け加えます。 使い方 ・ダウンロードしたい画像があるTwitterのページを開きます ・Chromeブラウザ右上のTwimアイコンをクリックします ・Twimアイコンが水色に変わった後にダウンロードしたい画像をクリックすることでダウンロードできます ・もう一度Twimアイコンをクリックすることで通常のTwitterの使用に戻ることができます Version 0.3.0: 全面的な改修を行いました。
Extension Basic Information
Name | Twim |
ID | plbjlbkkimkfofpjimdlegcaelgcnldd |
Official URL | https://chromewebstore.google.com/detail/twim/plbjlbkkimkfofpjimdlegcaelgcnldd |
Description | a twitter image downloader chrome extension |
File Size | 31.72 KB |
Installation Count | 20 |
Current Version | 0.3.0 |
Last Updated | 2018-04-06 |
Publish Date | 2018-04-06 |
Developer | snowlt23 |
Payment Type | free |
Extension Website | https://github.com/snowlt23/twim |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twim", "version": "0.3.0", "description": "a twitter image downloader chrome extension", "icons": { "128": "icon-enable.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "twim.js" ] } ], "browser_action": { "default_icon": "icon-disable.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "background", "downloads", "https:\/\/twitter.com\/*" ], "options_page": "twim_options.html", "web_accessible_resources": [ "icon-enable.png" ] } |