Stop Loading Already!

For websites that continuously load, clicking the extension button will stop. Click again to allow.

Stop Loading Already!란 무엇입니까?

Stop Loading Already!은(는) Adam Griffin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For websites that continuously load, clicking the extension button will stop. Click again to allow."입니다.

확장 프로그램 스크린샷

screenshot

Stop Loading Already! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Some websites are abusively heavy in both the amount of download requests they generate and the content they continually force on to the page (ad cyclers, overlays, video autoplay, etc). This chrome extension provides a very lightweight and simple way to shut that pipe. It essentially works similar to if you had the speed to click the "X" by the address bar every time the page started to load another request. The button is a simple click to toggle on and click once more to toggle off.

This current version (1.1) stops all requests for Chrome in all tabs.

*Version 1.1*
Update 2019-01-28. This extension does use the "WebRequest" interface that Google is reportedly planning to nuke. (To investigate for yourself, search: google ad blockers webrequest). The end result of such a change means this extension would be nuked unless an alternative interface is provided. I'll do my best to update it if allowed.

The new version provides a little better wording to help people realize the button is a toggle on/off. Feedback indicated some people didn't realize this.

I did look at making it tab specific but it would have introduced the problem of the worst kind of pop-ups being allowed internet access. Also, it would have added a bit to the code to keep track of everything and would require additional permissions to access the tabs. I generally want to keep this extension down to the bare minimum of permissions required and extremely low performance impact so I will not be taking it in that direction.

*Version 1.0*
Update 2018-8-13. Google REQUIRES a screenshot. So, added the screenshot, 640x400, of a button... Yes, a button.                    

확장 프로그램 기본 정보

이름 Stop Loading Already! Stop Loading Already!
ID hefmobfeflajpgclfgehoidkmmgcndog
공식 URL https://chromewebstore.google.com/detail/stop-loading-already/hefmobfeflajpgclfgehoidkmmgcndog
설명 For websites that continuously load, clicking the extension button will stop. Click again to allow.
파일 크기 22.32 KB
설치 횟수 1,874
현재 버전 1.1
최근 업데이트 2019-01-28
출시 날짜 2019-01-28
평점 3.43/5 총 35 개의 평점
개발자 Adam Griffin
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop Loading Already!",
    "description": "For websites that continuously load, clicking the extension button will stop. Click again to allow.",
    "version": "1.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon512x512.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}