MinimalHero

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

MinimalHero란 무엇입니까?

MinimalHero은(는) https://aabergkvist.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

MinimalHero 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}