Tweet This Page
Browser Extension that tweets the current page URL and title.
Tweet This Page là gì?
Tweet This Page là một tiện ích mở rộng Chrome được phát triển bởi shuymn, và tính năng chính của nó là "Browser Extension that tweets the current page URL and title.".
Ả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 Tweet This Page
Tải xuống các tệp mở rộng Tweet This Page 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
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
URL Chính Thức | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
Mô tả | Browser Extension that tweets the current page URL and title. |
Kích Thước Tệp | 33.58 KB |
Số Lần Cài Đặt | 393 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2022-04-08 |
Ngày Phát Hành | 2020-06-01 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | shuymn |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/shuymn/tweet-this-page |
URL Trang Trợ Giúp | https://github.com/shuymn/tweet-this-page/issues |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1.1", "default_locale": "en", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/intent\/tweet?url=*" ], "js": [ "scripts\/content.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "contextMenus", "webNavigation", "https:\/\/twitter.com\/intent\/tweet?url=*" ] } |