Twitter Account Switcher
Twitter Account Switcher for Chrome
Twitter Account Switcher là gì?
Twitter Account Switcher là một tiện ích mở rộng Chrome được phát triển bởi fukayatsu, và tính năng chính của nó là "Twitter Account Switcher for Chrome".
Ả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 Account Switcher
Tải xuống các tệp mở rộng Twitter Account Switcher 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
Default keyboard shortcut to switch twitter account mac: ⌘ + Shift + S other: Ctrl + Shift + S # Credits Icons made by Freepik from www.flaticon.com https://www.flaticon.com/authors/freepik
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fljnkjcbdekmenbhmoeoebfcnpobjblk |
URL Chính Thức | https://chrome.google.com/webstore/detail/twitter-account-switcher/fljnkjcbdekmenbhmoeoebfcnpobjblk |
Mô tả | Twitter Account Switcher for Chrome |
Kích Thước Tệp | 23.55 KB |
Số Lần Cài Đặt | 81 |
Phiên Bản Hiện Tại | 1.3.0 |
Cập Nhật Lần Cuối | 2022-11-15 |
Ngày Phát Hành | 2020-03-29 |
Nhà Phát Triển | fukayatsu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/fukayatsu/twitter-account-switcher-crx |
URL Trang Trợ Giúp | https://github.com/fukayatsu/twitter-account-switcher-crx/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Account Switcher", "description": "Twitter Account Switcher for Chrome", "version": "1.3.0", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "activeTab" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" } } } } |