Twitter - Add Instant Reply
This extension adds an instant reply button, which you can set after clicking the extension's icon.
Twitter - Add Instant Replyとは何ですか?
Twitter - Add Instant Replyはbongosartによって開発されたChromeの拡張機能で、その主な機能は「This extension adds an instant reply button, which you can set after clicking the extension's icon.」です。
拡張機能のスクリーンショット
Twitter - Add Instant Reply拡張機能のCRXファイルをダウンロード
Twitter - Add Instant Reply拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension makes it a bit easier to reply to tweets with a default reply.
Go to twitter.com and and click the icon. Add the text you want to use as a default reply and click save.
Open the tweet you want to answer to. You will see that a button is added to do an instant reply. Click the button and your default reply will be added to the reply section. 拡張機能の基本情報
| 名前 | |
| ID | fokpchplhnamghfkfekgefcjfinmlglg |
| 公式URL | https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg |
| 説明 | This extension adds an instant reply button, which you can set after clicking the extension's icon. |
| ファイルサイズ | 38.56 KB |
| インストール数 | 25 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2018-06-20 |
| 公開日 | 2018-06-20 |
| 開発者 | bongosart |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitter - Add Instant Reply",
"description": "This extension adds an instant reply button, which you can set after clicking the extension's icon.",
"version": "1.0",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Click to edit your reply message",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"https:\/\/ajax.googleapis.com\/",
"storage",
"tabs"
],
"content_scripts": [
{
"js": [
"jquery.min.js",
"contentScript.js",
"addReplyButtonToScreen.js"
],
"matches": [
"https:\/\/twitter.com\/*"
],
"run_at": "document_end"
}
]
} | |