MinimalHero

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

MinimalHero là gì?

MinimalHero là một tiện ích mở rộng Chrome được phát triển bởi https://aabergkvist.com, và tính năng chính của nó là "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MinimalHero

Tải xuống các tệp mở rộng MinimalHero dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MinimalHero MinimalHero
ID gcdaindihlghbalolfkpfkfpgdhlpnpe
URL Chính Thức https://chromewebstore.google.com/detail/minimalhero/gcdaindihlghbalolfkpfkfpgdhlpnpe
Mô tả A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.
Kích Thước Tệp 14.71 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-12-12
Ngày Phát Hành 2017-12-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://aabergkvist.com
Loại Thanh Toán free
Trang Web Mở Rộng https://aabergkvist.com/resources
URL Trang Trợ Giúp https://aabergkvist.com/contact
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}