Unwanted Opinions
Lets you block tweets using various options.
Vad är Unwanted Opinions?
Unwanted Opinions är en Chrome-tillägg utvecklad av Xinto, och dess huvudfunktion är "Lets you block tweets using various options.".
Tilläggsskärmbilder
Ladda ner Unwanted Opinions-förlängningens CRX-fil
Ladda ner Unwanted Opinions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Unwanted Opinion saves your eyes by blocking tweets using filters you specify. Still want to see the tweet? Press the Show button! Grundläggande Information om Tillägg
| Namn | |
| ID | ejobchilnlocfaljfaakomkhaajkojin |
| Officiell webbadress | https://chromewebstore.google.com/detail/unwanted-opinions/ejobchilnlocfaljfaakomkhaajkojin |
| Beskrivning | Lets you block tweets using various options. |
| Filstorlek | 22.77 KB |
| Antal Installationer | 27 |
| Aktuell Version | 0.2.1 |
| Senast Uppdaterad | 2022-11-24 |
| Publiceringsdatum | 2022-11-21 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Xinto |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://vencord.dev/cloud/privacy |
| Stödda Språk | 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"
]
}
]
} | |