MinimalHero

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

Vad är MinimalHero?

MinimalHero är en Chrome-tillägg utvecklad av https://aabergkvist.com, och dess huvudfunktion är "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner MinimalHero-förlängningens CRX-fil

Ladda ner MinimalHero-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn MinimalHero MinimalHero
ID gcdaindihlghbalolfkpfkfpgdhlpnpe
Officiell webbadress https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe
Beskrivning A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Filstorlek 14.71 KB
Antal Installationer 48
Aktuell Version 1.1
Senast Uppdaterad 2017-12-12
Publiceringsdatum 2017-12-12
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://aabergkvist.com
Betalningssätt free
Tilläggswebbplats https://aabergkvist.com/resources
Hjälpsida URL https://aabergkvist.com/contact
Stödda Språk 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"
    }
}