Remove Twitter Views
Remove the Views button from Twitter
Vad är Remove Twitter Views?
Remove Twitter Views är en Chrome-tillägg utvecklad av Kabaj, och dess huvudfunktion är "Remove the Views button from Twitter".
Tilläggsskärmbilder
Ladda ner Remove Twitter Views-förlängningens CRX-fil
Ladda ner Remove Twitter Views-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
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 Grundläggande Information om Tillägg
| Namn | |
| ID | flcjnidfibjigabnihmblehlkkeiganp |
| Officiell webbadress | https://chromewebstore.google.com/detail/remove-twitter-views/flcjnidfibjigabnihmblehlkkeiganp |
| Beskrivning | Remove the Views button from Twitter |
| Filstorlek | 8.51 KB |
| Antal Installationer | 92 |
| Aktuell Version | 1.2.2 |
| Senast Uppdaterad | 2023-01-17 |
| Publiceringsdatum | 2022-12-26 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Kabaj |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |