MinimalHero

A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.

¿Qué es MinimalHero?

MinimalHero es una extensión de Chrome desarrollada por https://aabergkvist.com, y su función principal es "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión MinimalHero

Descarga archivos de extensión MinimalHero en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre MinimalHero MinimalHero
ID gcdaindihlghbalolfkpfkfpgdhlpnpe
URL Oficial https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe
Descripción A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Tamaño del Archivo 14.71 KB
Cantidad de Instalaciones 48
Versión Actual 1.1
Última Actualización 2017-12-12
Fecha de Publicación 2017-12-12
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://aabergkvist.com
Tipo de Pago free
Sitio Web de la Extensión https://aabergkvist.com/resources
URL de la Página de Ayuda https://aabergkvist.com/contact
Idiomas Soportados 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"
    }
}