Twitter User Memo
Twitter memo application
Twitter User Memo là gì?
Twitter User Memo là một tiện ích mở rộng Chrome được phát triển bởi twitter-user-memo, và tính năng chính của nó là "Twitter memo application".
Ả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 User Memo
Tải xuống các tệp mở rộng Twitter User Memo 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
Twitter User Memo is a Chrome extension that adds a small text box near any user's profile. Use this extension to leave a short memo on who users are at text boxes added beside their profile pictures, both on profile pages and hover profiles.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitter User Memo |
ID | bengjldcoldlkkpmajaeaochdoconilj |
URL Chính Thức | https://chromewebstore.google.com/detail/twitter-user-memo/bengjldcoldlkkpmajaeaochdoconilj |
Mô tả | Twitter memo application |
Kích Thước Tệp | 21.22 KB |
Số Lần Cài Đặt | 543 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2020-04-04 |
Ngày Phát Hành | 2020-04-04 |
Đánh Giá | 4.21/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | twitter-user-memo |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "description": "Twitter memo application", "default_locale": "en", "manifest_version": 2, "permissions": [ "storage", "webRequest", "*:\/\/*.twitter.com\/" ], "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "content_scripts": [ { "css": [ "css\/main.css" ], "matches": [ "https:\/\/*.twitter.com\/*" ], "run_at": "document_end", "js": [ "js\/memoOnCard.js", "js\/memoOnProfile.js" ] } ], "page_action": { "default_icon": { "32": "images\/icon24.png" }, "default_title": "Twitter Memo" } } |