Tweet Grabber
This extension allows you to copy tweets to your clipboard.
Tweet Grabber là gì?
Tweet Grabber là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension allows you to copy tweets to your clipboard.".
Tải xuống tệp CRX của tiện ích mở rộng Tweet Grabber
Tải xuống các tệp mở rộng Tweet Grabber 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
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tweet Grabber |
ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
URL Chính Thức | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
Mô tả | This extension allows you to copy tweets to your clipboard. |
Kích Thước Tệp | 196 KB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2017-12-04 |
Ngày Phát Hành | 2017-12-04 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |