Twitter Account Switcher
Twitter Account Switcher for Chrome
什么是Twitter Account Switcher?
Twitter Account Switcher是由fukayatsu开发的Chrome扩展程序,该扩展的主要功能是“Twitter Account Switcher for Chrome”。
扩展截图
下载Twitter Account Switcher扩展crx文件
下载Twitter Account Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | fljnkjcbdekmenbhmoeoebfcnpobjblk |
官方URL | https://chrome.google.com/webstore/detail/twitter-account-switcher/fljnkjcbdekmenbhmoeoebfcnpobjblk |
简介 | Twitter Account Switcher for Chrome |
文件大小 | 23.55 KB |
安装次数 | 81 |
当前版本 | 1.3.0 |
更新时间 | 2022-11-15 |
上架时间 | 2020-03-29 |
开发者 | fukayatsu |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/fukayatsu/twitter-account-switcher-crx |
帮助页面URL | https://github.com/fukayatsu/twitter-account-switcher-crx/issues |
支持的语言 | 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" } } } } |