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 |
| Eメール | [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"
} | |