remove-twitter-trends
Switches Twitter trending topics off
Что такое remove-twitter-trends?
remove-twitter-trends - это расширение Chrome, разработанное Andre Alves Garzia, и его основная функция - "Switches Twitter trending topics off".
Снимки экрана расширения
Скачать файл CRX расширения remove-twitter-trends
Скачайте файлы расширений remove-twitter-trends в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.                     Основная информация о расширении
| Название |   |  
| ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac | 
| Официальный URL | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac | 
| Описание | Switches Twitter trending topics off | 
| Размер файла | 1.45 MB | 
| Количество установок | 918 | 
| Текущая Версия | 1.0.1 | 
| Последнее Обновление | 2021-12-31 | 
| Дата публикации | 2021-12-31 | 
| Рейтинг | 3.43/5 Всего 7 оценок | 
| Разработчик | Andre Alves Garzia | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Поддерживаемые языки | en-GB | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "remove-twitter-trends",
    "description": "Switches Twitter trending topics off",
    "version": "1.0.1",
    "icons": {
        "64": "icons\/icon512.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "browser-polyfill.js",
                "mithril.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}  |  |