Unwanted Opinions
Lets you block tweets using various options.
Hvad er Unwanted Opinions?
Unwanted Opinions er en Chrome-udvidelse udviklet af Xinto, og dens hovedfunktion er "Lets you block tweets using various options.".
Udvidelsesskærmbilleder
Download Unwanted Opinions-udvidelses-CRX-fil
Download Unwanted Opinions-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Unwanted Opinion saves your eyes by blocking tweets using filters you specify. Still want to see the tweet? Press the Show button! Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ejobchilnlocfaljfaakomkhaajkojin |
| Officiel URL | https://chromewebstore.google.com/detail/unwanted-opinions/ejobchilnlocfaljfaakomkhaajkojin |
| Beskrivelse | Lets you block tweets using various options. |
| Filstørrelse | 22.77 KB |
| Antal Installationer | 27 |
| Nuværende Version | 0.2.1 |
| Senest Opdateret | 2022-11-24 |
| Udgivelsesdato | 2022-11-21 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Xinto |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | https://vencord.dev/cloud/privacy |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Unwanted Opinions",
"version": "0.2.1",
"description": "Lets you block tweets using various options.",
"icons": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"action": {
"default_title": "Unwanted Opinion",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"resources": [
"opinionator.js"
]
}
]
} | |