Tweet Grabber
This extension allows you to copy tweets to your clipboard.
Tweet Grabberとは何ですか?
Tweet GrabberはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to copy tweets to your clipboard.」です。
Tweet Grabber拡張機能のCRXファイルをダウンロード
Tweet Grabber拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.
拡張機能の基本情報
名前 | Tweet Grabber |
ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
公式URL | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
説明 | This extension allows you to copy tweets to your clipboard. |
ファイルサイズ | 196 KB |
インストール数 | 40 |
現在のバージョン | 1.0 |
最終更新日 | 2017-12-04 |
公開日 | 2017-12-04 |
開発者 | Unknown |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tweet Grabber", "description": "This extension allows you to copy tweets to your clipboard.", "version": "1.0", "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "jquery-2.1.4.min.js", "tweet-grabber.js" ], "css": [ "tweet-grabber.css" ] } ] } |