Simple Blocker

Easily block distracting or annoying websites and boost your productivity.

Simple Blocker란 무엇입니까?

Simple Blocker은(는) proeditro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily block distracting or annoying websites and boost your productivity."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Simple Blocker is an easy to use Chrome extension which allows you to block websites. You can block specific subdomains (news.google.com) or entire websites (facebook.com) at the click of a button.

Simple Blocker was designed with students in mind, but can be beneficial to anyone who has a lot to do and seems to get distracted too easily. Are you spending too much time checking Facebook? Browsing Reddit when you should be writing a paper? In a few minutes, Simple Blocker could be blocking all those websites for you so you can focus on getting things done.

Features:
- Use the built in Sleep Timer to enable blocking for a set amount of time
- Lock yourself out of the options menu with a preset or random password
- Clean, simple user interface with an easy-to-use options menu
- Block an unlimited number of websites, subdomains, and pages

If you really have trouble focusing and want to resist the urge to disable Simple Blocker, you can even block the Chrome Extensions menu, as well as lock the Simple Blocker options menu with a password. This, in addition to allowing Simple Blocker in incognito mode, will make it very difficult to circumvent the blocking features, forcing you to focus on your work.


==========
Change Log
0.6.4.5
fix all
==========
0.6.1
--------
-Point all website references to HTTPS version
-Update app icon

0.6.0
--------
-Fix bug where back button navigation did not work on "blocked" page. Browser back button will now navigate you back to the page you were at before you tried to go to a prohibited page
-Correct some display issues with the sleep timer on the options page

0.5.6
--------
-Update copyright notice, refactor

0.5.5
--------
-Refactoring of core Javascript code to prepare for new features

0.5.4
--------
-Minor fixes

0.5.3
--------
-Improved clarity of instructions on the options page

0.5.2
--------
-Fixed bug allowing users to accidentally block themselves out of the options menu

0.5.1
--------
-Improved layout of review and "Like" buttons

0.5.0
--------
-Fixed bug allowing circumvention of password protection to access options menu
-Usability improvements on password login page
-Assorted refactoring and performance improvements

0.4.4
--------
-Minor UI updates, improved readability of font across platforms
-Improved accessibility for those with screen reading software

0.4.3
--------
-Tweaked CSS for options menu

0.4.2
--------
-Fixed bug on the options menu

0.4.1
--------
-Made minor tweaks to options menu

0.4.0
--------
-Added block counter, tallies up how many times Simple Blocker has blocked a site for you
-Minor tweaks to options menu and blocking code
-Officially out of Beta

0.3.2
--------
-Fixed a bug that occurred for some users on the option menu

0.3.1
--------
-Fixed issues with Simple Blocker icons on darker Chrome themes

0.3.0
--------
-Major overhaul of options menu - no longer need to hit "save" button to save on/off switch state
-Added random password functionality

0.2.1
--------
-Fixed bug with password error message on Macs
-Fixed bug with password entry

0.2.0
--------
-Added Sleep Timer

0.1.0
--------
-Initial Beta release                    

확장 프로그램 기본 정보

이름 Simple Blocker Simple Blocker
ID akfbkbiialncppkngofjpglbbobjoeoe
공식 URL https://chrome.google.com/webstore/detail/simple-blocker/akfbkbiialncppkngofjpglbbobjoeoe
설명 Easily block distracting or annoying websites and boost your productivity.
파일 크기 120 KB
설치 횟수 41,894
현재 버전 0.6.4.5
최근 업데이트 2023-05-12
출시 날짜 2016-08-21
평점 4.38/5 총 485 개의 평점
개발자 proeditro
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://simpleblocker.com/#support
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Blocker",
    "description": "Easily block distracting or annoying websites and boost your productivity.",
    "version": "0.6.4.5",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "noti.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Simple Blocker"
    }
}