Twitter Account Switcher
Twitter Account Switcher for Chrome
What is Twitter Account Switcher?
Twitter Account Switcher is a Chrome extension developed by fukayatsu, and its main feature is "Twitter Account Switcher for Chrome".
Extension Screenshots
Download Twitter Account Switcher Extension CRX File
Download Twitter Account Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | fljnkjcbdekmenbhmoeoebfcnpobjblk |
| Official URL | https://chrome.google.com/webstore/detail/twitter-account-switcher/fljnkjcbdekmenbhmoeoebfcnpobjblk |
| Description | Twitter Account Switcher for Chrome |
| File Size | 23.55 KB |
| Installation Count | 81 |
| Current Version | 1.3.0 |
| Last Updated | 2022-11-15 |
| Publish Date | 2020-03-29 |
| Developer | fukayatsu |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://github.com/fukayatsu/twitter-account-switcher-crx |
| Help Page URL | https://github.com/fukayatsu/twitter-account-switcher-crx/issues |
| Supported Languages | 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"
}
}
}
} | |