MinimalHero
A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
O que é MinimalHero?
MinimalHero é uma extensão do Chrome desenvolvida por https://aabergkvist.com, e sua principal característica é "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão MinimalHero
Baixe arquivos de extensão MinimalHero no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | MinimalHero |
ID | gcdaindihlghbalolfkpfkfpgdhlpnpe |
URL Oficial | https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe |
Descrição | A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn. |
Tamanho do Arquivo | 14.71 KB |
Contagem de Instalações | 48 |
Versão Atual | 1.1 |
Última Atualização | 2017-12-12 |
Data de Publicação | 2017-12-12 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://aabergkvist.com |
Tipo de Pagamento | free |
Site da Extensão | https://aabergkvist.com/resources |
URL da Página de Ajuda | https://aabergkvist.com/contact |
Idiomas Suportados | 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" } } |