PureTwitter
Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience!
Co je PureTwitter?
PureTwitter je rozšíření Chrome vyvinuté Lee, a jeho hlavní funkcí je „Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření PureTwitter
Stáhněte si soubory rozšíření PureTwitter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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! Základní Informace o Rozšíření
| Název | |
| ID | nflidllhiamnebgbgoemadhhfdpbbpbi |
| Oficiální URL | https://chromewebstore.google.com/detail/puretwitter/nflidllhiamnebgbgoemadhhfdpbbpbi |
| Popis | Filters out inappropriate tweets and accounts. Enjoy a cleaner, safer Twitter experience! |
| Velikost souboru | 371 KB |
| Počet instalací | 4,145 |
| Aktuální Verze | 1.0.14 |
| Poslední Aktualizace | 2023-12-21 |
| Datum Vydání | 2023-07-07 |
| Hodnocení | 4.63/5 Celkem 27 Hodnocení |
| Vývojář | Lee |
| [email protected] | |
| Typ Platby | in_app |
| URL Stránky Zásad Ochrany Soukromí | https://www.privacypolicies.com/live/1f7656aa-e3fa-4948-8033-2112e39a6734 |
| Podporované Jazyky | 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"
} | |