Remove Twitter Views
Remove Views button from Twitter
Что такое Remove Twitter Views?
Remove Twitter Views - это расширение Chrome, разработанное igorhaagrod, и его основная функция - "Remove Views button from Twitter".
Снимки экрана расширения
Скачать файл CRX расширения Remove Twitter Views
Скачайте файлы расширений Remove Twitter Views в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
After Elon Musk completely destroyed Twitter, extensions like this are needed. The focus of this one is, for now, removing the "views" button from the web app.
Основная информация о расширении
Название | Remove Twitter Views |
ID | nebfimpiljmmgfgaiaponfmcopndjkpg |
Официальный URL | https://chromewebstore.google.com/detail/remove-twitter-views/nebfimpiljmmgfgaiaponfmcopndjkpg |
Описание | Remove Views button from Twitter |
Размер файла | 7.8 KB |
Количество установок | 171 |
Текущая Версия | 1.0 |
Последнее Обновление | 2022-12-25 |
Дата публикации | 2022-12-25 |
Рейтинг | 4.73/5 Всего 11 оценок |
Разработчик | igorhaagrod |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove Twitter Views", "description": "Remove Views button from Twitter", "version": "1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "remove-views.html", "default_icon": "icon32.png" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "content-script.js" ] } ] } |