PureTwitter
Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience!
什么是PureTwitter?
PureTwitter是由Lee开发的Chrome扩展程序,该扩展的主要功能是“Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience!”。
扩展截图
下载PureTwitter扩展crx文件
下载PureTwitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A browser extension that filters out tweets and Twitter accounts containing pornography, violence, or advertisements automatically. With this extension, you can now stay away from junk tweets and enjoy a cleaner and safer Twitter experience. Say goodbye to inappropriate content and hello to a more pleasant social media experience. Get our browser extension now and start enjoying a better Twitter! 扩展基本信息
| 名称 | |
| ID | nflidllhiamnebgbgoemadhhfdpbbpbi |
| 官方URL | https://chromewebstore.google.com/detail/puretwitter/nflidllhiamnebgbgoemadhhfdpbbpbi |
| 简介 | Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience! |
| 文件大小 | 371 KB |
| 安装次数 | 4,145 |
| 当前版本 | 1.0.14 |
| 更新时间 | 2023-12-21 |
| 上架时间 | 2023-07-07 |
| 评分 | 4.63/5 共27次评分 |
| 开发者 | Lee |
| 电子邮箱 | [email protected] |
| 付费类型 | in_app |
| 隐私政策页面URL | https://www.privacypolicies.com/live/1f7656aa-e3fa-4948-8033-2112e39a6734 |
| 支持的语言 | en-US |
| manifest.json | |
{
"manifest_version": 3,
"name": "PureTwitter",
"description": "Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience\uff01",
"version": "1.0.14",
"background": {
"service_worker": "\/background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"css": [
"style.css"
],
"js": [
"\/content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"*:\/\/*.twitter.com\/*",
"*:\/\/puretwitter.ikeyly.cn\/*"
],
"web_accessible_resources": [
{
"resources": [
"\/injected.js"
],
"matches": [
"https:\/\/*.twitter.com\/*"
]
}
],
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx"
} | |