Remove Twitter Views
Remove the Views button from Twitter
Cos'è Remove Twitter Views?
Remove Twitter Views è un'estensione di Chrome sviluppata da Kabaj, e la sua funzione principale è "Remove the Views button from Twitter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remove Twitter Views
Scarica i file di estensione Remove Twitter Views in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Removes the new "Views" button from Twitter
It is my first time doing a Chrome extension, so it might not be optimized at all and might stop working soon, I take all suggestions.
Here is the GitHub link to the extension : https://github.com/KabajSAH/Twitter-Remove-Views Informazioni di Base sull'Estensione
| Nome | |
| ID | flcjnidfibjigabnihmblehlkkeiganp |
| URL Ufficiale | https://chromewebstore.google.com/detail/remove-twitter-views/flcjnidfibjigabnihmblehlkkeiganp |
| Descrizione | Remove the Views button from Twitter |
| Dimensione del File | 8.51 KB |
| Conteggio Installazioni | 92 |
| Versione Corrente | 1.2.2 |
| Ultimo Aggiornamento | 2023-01-17 |
| Data di Pubblicazione | 2022-12-26 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Kabaj |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Remove Twitter Views",
"description": "Remove the Views button from Twitter",
"version": "1.2.2",
"author": "Kabaj",
"content_scripts": [
{
"matches": [
"*:\/\/twitter.com\/*"
],
"js": [
".\/scripts\/content.js"
]
}
],
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"64": "images\/icon-64.png",
"128": "images\/icon-128.png"
}
} | |