Remove Twitter Views
Remove the Views button from Twitter
Что такое Remove Twitter Views?
Remove Twitter Views - это расширение Chrome, разработанное Kabaj, и его основная функция - "Remove the Views button from Twitter".
Снимки экрана расширения
Скачать файл CRX расширения Remove Twitter Views
Скачайте файлы расширений Remove Twitter Views в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | flcjnidfibjigabnihmblehlkkeiganp |
| Официальный URL | https://chromewebstore.google.com/detail/remove-twitter-views/flcjnidfibjigabnihmblehlkkeiganp |
| Описание | Remove the Views button from Twitter |
| Размер файла | 8.51 KB |
| Количество установок | 92 |
| Текущая Версия | 1.2.2 |
| Последнее Обновление | 2023-01-17 |
| Дата публикации | 2022-12-26 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Kabaj |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
}
} | |