MinimalHero

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

ما هو MinimalHero؟

MinimalHero هو إضافة Chrome تم تطويرها بواسطة https://aabergkvist.com، والميزة الرئيسية لها هي "A lightweight extension that Limits the number of open tabs & removes the feed from Facebook & LinkedIn.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة MinimalHero

قم بتنزيل ملفات الامتداد MinimalHero بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}