MinimalHero

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

Co je MinimalHero?

MinimalHero je rozšíření Chrome vyvinuté https://aabergkvist.com, a jeho hlavní funkcí je „A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření MinimalHero

Stáhněte si soubory rozšíření MinimalHero ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název MinimalHero MinimalHero
ID gcdaindihlghbalolfkpfkfpgdhlpnpe
Oficiální URL https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe
Popis A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Velikost souboru 14.71 KB
Počet instalací 48
Aktuální Verze 1.1
Poslední Aktualizace 2017-12-12
Datum Vydání 2017-12-12
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://aabergkvist.com
Typ Platby free
Webové stránky Rozšíření https://aabergkvist.com/resources
URL Stránky Nápovědy https://aabergkvist.com/contact
Podporované Jazyky 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"
    }
}