Verified Tweets Only
Simple extension to only show verified tweets on Twitter
Что такое Verified Tweets Only?
Verified Tweets Only - это расширение Chrome, разработанное https://verifiedtweetsonly.com, и его основная функция - "Simple extension to only show verified tweets on Twitter".
Снимки экрана расширения
Скачать файл CRX расширения Verified Tweets Only
Скачайте файлы расширений Verified Tweets Only в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simple extension to only show verified tweets on Twitter. All you got to do is check/uncheck to filter tweets from verified tweeple only! Works in: - home feed - search results - tweet replies ... and anywhere else tweets show up! The code is open source ( https://github.com/RajatVaghani/verified-tweets-only ) and extremely light weight and easy to use - and most importantly, it gets the job done!
Основная информация о расширении
Название | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Официальный URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Описание | Simple extension to only show verified tweets on Twitter |
Размер файла | 90.9 KB |
Количество установок | 40 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2021-06-24 |
Дата публикации | 2021-06-24 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | https://verifiedtweetsonly.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://verifiedtweetsonly.com |
URL страницы помощи | https://verifiedtweetsonly.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Verified Tweets Only", "version": "0.0.1", "manifest_version": 2, "description": "Simple extension to only show verified tweets on Twitter", "icons": { "16": "icons\/icon_on.png", "48": "icons\/icon_on.png", "128": "icons\/icon_on.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "storage.js", "contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "page_action": { "default_icon": { "19": "icons\/icon_on.png", "38": "icons\/icon_on.png" }, "default_popup": "popup.html", "default_title": "Verified Tweets Only" } } |