Remove Tweet Views
Removes the new tweet views from Twitter
Apa itu Remove Tweet Views?
Remove Tweet Views adalah ekstensi Chrome yang dikembangkan oleh https://robin.software, dan fitur utamanya adalah "Removes the new tweet views from Twitter".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Remove Tweet Views
Unduh file ekstensi Remove Tweet Views dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Removes the newly added impressions on every tweet and brings back the Twitter Bird
Informasi Dasar Ekstensi
Nama | |
ID | dokodkdpdbcmhopjooolcchokhmehiki |
URL Resmi | https://chromewebstore.google.com/detail/remove-tweet-views/dokodkdpdbcmhopjooolcchokhmehiki |
Deskripsi | Removes the new tweet views from Twitter |
Ukuran File | 21.65 KB |
Jumlah Instalasi | 37 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2023-07-27 |
Tanggal Publikasi | 2022-12-24 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | https://robin.software |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://robin.software |
URL Halaman Bantuan | https://twitter.com/robin__software |
URL Halaman Kebijakan Privasi | https://robin.software/imprint |
Bahasa yang Didukung | 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\/*" ] } ] } |