Better TweetDeck
Take TweetDeck to the next level!
什么是Better TweetDeck?
Better TweetDeck是由https://erambert.me开发的Chrome扩展程序,该扩展的主要功能是“Take TweetDeck to the next level!”。
扩展截图
下载Better TweetDeck扩展crx文件
下载Better TweetDeck扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Improve your experience on TweetDeck web with tons of features!
More informations on https://better.tw
Report bugs here:
https://github.com/eramdam/BetterTweetDeck/issues
Source code:
https://github.com/eramdam/BetterTweetDeck
Follow @BetterTDeck on Twitter for news/support 扩展基本信息
| 名称 | |
| ID | micblkellenpbfapmcpcfhcoeohhnpob |
| 官方URL | https://chromewebstore.google.com/detail/better-tweetdeck/micblkellenpbfapmcpcfhcoeohhnpob |
| 简介 | Take TweetDeck to the next level! |
| 文件大小 | 5.92 MB |
| 安装次数 | 60,672 |
| 当前版本 | 4.11.1 |
| 更新时间 | 2023-07-08 |
| 上架时间 | 2020-06-06 |
| 评分 | 4.25/5 共283次评分 |
| 开发者 | https://erambert.me |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://better.tw |
| 帮助页面URL | https://twitter.com/BetterTDeck |
| 隐私政策页面URL | https://github.com/eramdam/BetterTweetDeck/wiki/Privacy-policy |
| 支持的语言 | de,en,fr,nl,pt-BR,cs,ru,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Better TweetDeck",
"description": "Take TweetDeck to the next level!",
"short_name": "Better TweetDeck",
"default_locale": "en",
"version": "4.11.1",
"manifest_version": 3,
"icons": {
"16": "build\/assets\/icons\/icon-16.png",
"32": "build\/assets\/icons\/icon-32.png",
"48": "build\/assets\/icons\/icon-48.png",
"96": "build\/assets\/icons\/icon-96.png",
"128": "build\/assets\/icons\/icon-128.png",
"256": "build\/assets\/icons\/icon-256.png",
"512": "build\/assets\/icons\/icon-512.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/tweetdeck.twitter.com\/*"
],
"js": [
"build\/content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"build\/inject.js",
"*.png",
"build\/emoji-sheet-64.png"
],
"matches": [
"*:\/\/tweetdeck.twitter.com\/*"
]
}
],
"permissions": [
"storage",
"contextMenus",
"notifications"
],
"content_security_policy": {
"extension_pages": "img-src https: data: 'self' *; default-src; font-src 'self' * data:; connect-src * https:; style-src 'unsafe-inline'; script-src 'self'"
},
"host_permissions": [
"*:\/\/tweetdeck.twitter.com\/*",
"https:\/\/*.tenor.com\/*",
"https:\/\/*.giphy.com\/*",
"https:\/\/*.twimg.com\/*"
],
"externally_connectable": {
"matches": [
"*:\/\/tweetdeck.twitter.com\/*"
]
},
"options_page": "build\/options\/ui.html"
} | |