Block the twitter feed

Remove the feeds from twitter and just leave the search bar

Что такое Block the twitter feed?

Block the twitter feed - это расширение Chrome, разработанное TechBore, и его основная функция - "Remove the feeds from twitter and just leave the search bar".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Block the twitter feed

Скачайте файлы расширений Block the twitter feed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Remove the feeds from twitter and just leave the search bar
A simple plugin to remove the recommended feeds from twitter to limit distractions and boost your productivity.
Feeds removed:
- All of the feeds on the right side of the home page (Trending, Who to follow).
- Your main feed on the home page.
- The Who to Follow feed that is sliced into other people's feed.

Changelog:
 1.0.0 
- Adds initial offering to block unproductive feeds off twitter.

Block All the Feeds!!!

Support:
If you have benefited from this extension, consider buying me a coffee at the following link:
buymeacoff.ee/m6nJCHq57                    

Основная информация о расширении

Название Block the twitter feed Block the twitter feed
ID eoedcdlampccjocbpffoheiiaoinedkm
Официальный URL https://chromewebstore.google.com/detail/block-the-twitter-feed/eoedcdlampccjocbpffoheiiaoinedkm
Описание Remove the feeds from twitter and just leave the search bar
Размер файла 6.89 KB
Количество установок 211
Текущая Версия 1.0.0
Последнее Обновление 2021-01-27
Дата публикации 2021-01-27
Рейтинг 4.33/5 Всего 3 оценок
Разработчик TechBore
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block the twitter feed",
    "description": "Remove the feeds from twitter and just leave the search bar",
    "icons": {
        "128": "icon.png"
    },
    "version": "1.0.0",
    "permissions": [
        "activeTab",
        "http:\/\/*.twitter.com\/*",
        "https:\/\/*.twitter.com\/*"
    ],
    "browser_action": {
        "default_title": "Remove the twitter feed and trending sections",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "css": [
                "style.css"
            ],
            "js": [],
            "matches": [
                "*:\/\/twitter.com\/home*",
                "*:\/\/www.twitter.com\/home*",
                "*:\/\/www.twitter.com\/*",
                "*:\/\/www.twitter.com\/home",
                "*:\/\/twitter.com\/*",
                "*:\/\/www.twitter.com\/home"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}