MinimalHero
A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Что такое MinimalHero?
MinimalHero - это расширение Chrome, разработанное https://aabergkvist.com, и его основная функция - "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".
Снимки экрана расширения
Скачать файл CRX расширения MinimalHero
Скачайте файлы расширений MinimalHero в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Minimize distractions & keep focus on the things that matter to you by preventing multi-tasking and mindless feed-scrolling. A lightweight chrome browser extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn. CHANGELOG: 1.1 - Added "Disable Plugin for 10 minutes" button. 1.0 - Initial Release
Основная информация о расширении
Название | MinimalHero |
ID | gcdaindihlghbalolfkpfkfpgdhlpnpe |
Официальный URL | https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe |
Описание | A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn. |
Размер файла | 14.71 KB |
Количество установок | 48 |
Текущая Версия | 1.1 |
Последнее Обновление | 2017-12-12 |
Дата публикации | 2017-12-12 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | https://aabergkvist.com |
Тип оплаты | free |
Официальный сайт расширения | https://aabergkvist.com/resources |
URL страницы помощи | https://aabergkvist.com/contact |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MinimalHero", "description": "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.", "version": "1.1", "permissions": [ "http:\/\/www.linkedin.com", "https:\/\/www.linkedin.com", "http:\/\/www.facebook.com", "https:\/\/www.facebook.com", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.linkedin.com\/*", "https:\/\/*.linkedin.com\/*" ], "js": [ "linkedin.js" ], "css": [ "linkedin.css" ] }, { "matches": [ "http:\/\/*.facebook.com\/*", "https:\/\/*.facebook.com\/*" ], "js": [ "facebook.js" ], "css": [ "facebook.css" ] } ], "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" } } |