Math Blocker

Block distracting websites by answering tough math questions

Math Blockerคืออะไร?

Math Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joshua.deans21 และคุณลักษณะหลักของมันคือ "Block distracting websites by answering tough math questions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Math Blocker

ดาวน์โหลดไฟล์ส่วนขยาย Math Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Math Blocker is a Chrome extension that blocks distracting websites by making users answer a series of math questions. 

When loading a blocked website, a popup appears with a series of math questions. The user cannot access the site until they have completed all questions. Once the questions are finished, the site can only be used for a previously specified amount of time before another set of questions appears.

The user defines a list of websites, and specifies when the block is "on".

The user also defines how difficult each question is, and how many questions are asked before the user can go to the website.

If this extension has been helpful to you, please consider sending me a donation through my in-app PayPal link. Thank you.

Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Math Blocker Math Blocker
ID ddoloajokemkdgcgdpplnofdajbjkkkm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/math-blocker/ddoloajokemkdgcgdpplnofdajbjkkkm
คำอธิบาย Block distracting websites by answering tough math questions
ขนาดไฟล์ 1.5 MB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2019-07-17
วันที่เผยแพร่ 2019-07-14
คะแนน 4.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา joshua.deans21
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Math Blocker",
    "description": "Block distracting websites by answering tough math questions",
    "version": "0.1.1",
    "browser_action": {
        "default_title": "Math Blocker Settings"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "modal.css"
            ],
            "js": [
                "moment.min.js",
                "modal.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "modal.html"
    ],
    "icons": {
        "16": ".\/images\/calculating16.png",
        "48": ".\/images\/calculating48.png",
        "128": ".\/images\/calculating128.png"
    },
    "options_page": "index.html",
    "content_security_policy": "script-src 'self' https:\/\/code.jquery.com https:\/\/cdnjs.cloudflare.com https:\/\/stackpath.bootstrapcdn.com 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'",
    "permissions": [
        "storage",
        "*:\/\/*\/*"
    ]
}