Stack Block

Block the annoying parts of Stack Overflow

ما هو Stack Block؟

Stack Block هو إضافة Chrome تم تطويرها بواسطة Jeff Cole، والميزة الرئيسية لها هي "Block the annoying parts of Stack Overflow".

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

screenshot

تحميل ملف CRX للإضافة Stack Block

قم بتنزيل ملفات الامتداد Stack Block بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Sometimes, you just want to read technical questions and answers, and not be distracted by whether or not Darth Vader truly renounced the dark side in the moments before his death.

This extension blocks the Hot Network Questions, Careers, Hire Me, and other sections on Stack Overflow and Stack Exchange, so you can get back to work.                    

معلومات أساسية عن التمديد

الاسم Stack Block Stack Block
ID oaimjdjckmmblefojgncilidkkandhbl
عنوان URL الرسمي https://chromewebstore.google.com/detail/stack-block/oaimjdjckmmblefojgncilidkkandhbl
الوصف Block the annoying parts of Stack Overflow
حجم الملف 187 KB
عدد التثبيتات 45
النسخة الحالية 0.0.7
آخر تحديث 2017-11-30
تاريخ النشر 2017-11-30
المطور Jeff Cole
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/jeffcole/stack-block
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/serverfault.com\/*",
        "*:\/\/stackoverflow.com\/*",
        "*:\/\/*.stackexchange.com\/*",
        "*:\/\/superuser.com\/*"
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Stack Block",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/serverfault.com\/*",
                "*:\/\/stackoverflow.com\/*",
                "*:\/\/*.stackexchange.com\/*",
                "*:\/\/superuser.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "scripts\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}