Twitter Shortcut Plus
Add more keyboard shortcuts to twitter.com.
什么是Twitter Shortcut Plus?
Twitter Shortcut Plus是由r7kamura开发的Chrome扩展程序,该扩展的主要功能是“Add more keyboard shortcuts to twitter.com.”。
扩展截图
下载Twitter Shortcut Plus扩展crx文件
下载Twitter Shortcut Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Keyboard shortcuts can be changed from options page.
Browse:
- Browse links in background (default: "w")
- Browse links in foreground (default: "alt+w")
- Browse media in background (default: "f")
- Browse media in foreground (default: "alt+f")
Select:
- Select author (default: "a")
- Select quoted tweet (default: "alt+q")
Others:
- Delete tweet (default: "alt+delete")
- Download media (default: "v")
- Quote tweet (default: "q")
- Toggle pin tweet (default: "z") 扩展基本信息
| 名称 | |
| ID | lbmdlngkfaknmfgkpkndloapdhgkmdjo |
| 官方URL | https://chromewebstore.google.com/detail/twitter-shortcut-plus/lbmdlngkfaknmfgkpkndloapdhgkmdjo |
| 简介 | Add more keyboard shortcuts to twitter.com. |
| 文件大小 | 60.17 KB |
| 安装次数 | 24 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2022-05-31 |
| 上架时间 | 2022-05-30 |
| 开发者 | r7kamura |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/r7kamura/twitter-shortcut-plus |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitter Shortcut Plus",
"description": "Add more keyboard shortcuts to twitter.com.",
"version": "0.1.1",
"manifest_version": 3,
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": {
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"assets\/content-script-loader.main.ts.4b943d35.31e9a031.js"
],
"matches": [
"https:\/\/twitter.com\/*"
]
}
],
"options_page": "options.html",
"permissions": [
"downloads",
"storage"
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"resources": [
"assets\/command.b5f621b4.js",
"assets\/main.ts.4b943d35.js"
],
"use_dynamic_url": true
}
]
} | |