Overlay Remover Auto

Automaticaly close detected overlays.

Overlay Remover Auto란 무엇입니까?

Overlay Remover Auto은(는) peter.guruden에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automaticaly close detected overlays."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Overlay Remover Auto 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Based on Behind The Overlay extension by Nicolae Namolovan.

This extension automatically removes detected overlays on enabled websites.
Can be easily configured for specific website (by clicking the the extension button).

Some websites display delayed overlays - set timed run for these websites.
On some websites the timed run can remove more than just the overlay - in this case set the "Stop timer if overlay found" to stop after first overlay is removed.

Note on algorithm for detection: it is still default from Nicolae Namolovan - it looks for overlays in the center of the screen, so it might not detect some of the cookie notifications displayed on the bottom of the screen. I might improve that in the future.

Requires permissions: tabs (for automatic running of ora_content.js on all websites - but only runs on enabled ones), storage (for storing of settings)

Source code: https://github.com/InanZen/OverlayRemoverAuto                    

확장 프로그램 기본 정보

이름 Overlay Remover Auto Overlay Remover Auto
ID bleeelcpenoboaoodilaaapgbgjdjdaj
공식 URL https://chromewebstore.google.com/detail/overlay-remover-auto/bleeelcpenoboaoodilaaapgbgjdjdaj
설명 Automaticaly close detected overlays.
파일 크기 20.43 KB
설치 횟수 2,962
현재 버전 1.1.1
최근 업데이트 2019-06-29
출시 날짜 2019-06-21
평점 3.09/5 총 11 개의 평점
개발자 peter.guruden
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/InanZen/OverlayRemoverAuto
도움말 페이지 URL https://github.com/InanZen/OverlayRemoverAuto/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overlay Remover Auto",
    "author": "InanZen",
    "description": "Automaticaly close detected overlays.",
    "version": "1.1.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "ora_options.html"
    },
    "background": {
        "scripts": [
            "js\/ora_background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/overlay_remover.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "OverlayRemoverAuto",
        "default_popup": "ora_popup.html"
    },
    "icons": {
        "128": "images\/jalousie_open_128.png"
    }
}