Remove Tweet Views
Removes the new tweet views from Twitter
Vad är Remove Tweet Views?
Remove Tweet Views är en Chrome-tillägg utvecklad av https://robin.software, och dess huvudfunktion är "Removes the new tweet views from Twitter".
Tilläggsskärmbilder
Ladda ner Remove Tweet Views-förlängningens CRX-fil
Ladda ner Remove Tweet 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 newly added impressions on every tweet and brings back the Twitter Bird
Grundläggande Information om Tillägg
Namn | |
ID | dokodkdpdbcmhopjooolcchokhmehiki |
Officiell webbadress | https://chromewebstore.google.com/detail/remove-tweet-views/dokodkdpdbcmhopjooolcchokhmehiki |
Beskrivning | Removes the new tweet views from Twitter |
Filstorlek | 21.65 KB |
Antal Installationer | 37 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2023-07-27 |
Publiceringsdatum | 2022-12-24 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://robin.software |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://robin.software |
Hjälpsida URL | https://twitter.com/robin__software |
URL till Sekretesspolicy Sidan | https://robin.software/imprint |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "$schema": "https:\/\/developer.chrome.com\/extensions\/manifest_v3.json", "name": "Remove Tweet Views", "description": "Removes the new tweet views from Twitter", "version": "0.0.3", "icons": { "16": "logo\/icon-16.png", "48": "logo\/icon-48.png", "128": "logo\/icon-128.png" }, "options_page": "settings\/settings.html", "action": { "default_title": "Remove Tweet Views", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ { "resources": [ "badgeHandler.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "permissions": [ "storage" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ] } |