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 là gì?
Twitter - Add Instant Reply là một tiện ích mở rộng Chrome được phát triển bởi bongosart, và tính năng chính của nó là "This extension adds an instant reply button, which you can set after clicking the extension's icon.".
Ả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 - Add Instant Reply
Tải xuống các tệp mở rộng Twitter - Add Instant Reply 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitter - Add Instant Reply |
ID | fokpchplhnamghfkfekgefcjfinmlglg |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg |
Mô tả | This extension adds an instant reply button, which you can set after clicking the extension's icon. |
Kích Thước Tệp | 38.56 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-06-20 |
Ngày Phát Hành | 2018-06-20 |
Nhà Phát Triển | bongosart |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |