Twitter News Feed Burner
Saves you from being distracted by Twitter's news feed.
Что такое Twitter News Feed Burner?
Twitter News Feed Burner - это расширение Chrome, разработанное Dmitri Kyle Brereton, и его основная функция - "Saves you from being distracted by Twitter's news feed.".
Снимки экрана расширения
Скачать файл CRX расширения Twitter News Feed Burner
Скачайте файлы расширений Twitter News Feed Burner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Have you ever visited Twitter to make a quick tweet, but ended up spending more time there because you got distracted by the news feed? Well you don't have to worry about that anymore. With this extension, you can hide your news feed to avoid distractions. Whenever you want to browse Twitter intentionally, you can easily turn the news feed back on.
Основная информация о расширении
Название | Twitter News Feed Burner |
ID | lbingojadaoinncfdhibfodloihablbi |
Официальный URL | https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi |
Описание | Saves you from being distracted by Twitter's news feed. |
Размер файла | 41.69 KB |
Количество установок | 109 |
Текущая Версия | 1.1 |
Последнее Обновление | 2019-09-05 |
Дата публикации | 2019-09-04 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Dmitri Kyle Brereton |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter News Feed Burner", "description": "Saves you from being distracted by Twitter's news feed.", "version": "1.1", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "jquery.min.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "webNavigation", "declarativeContent", "activeTab" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "background": { "scripts": [ "background.js" ] } } |