Free The Web

Gets rid of cookie and privacy notifications across the web by hiding or accepting them.

Free The Web란 무엇입니까?

Free The Web은(는) https://unmorph.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gets rid of cookie and privacy notifications across the web by hiding or accepting them."입니다.

확장 프로그램 스크린샷

screenshot

Free The Web 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows users to hide or auto-accept privacy and cookie notifications while browsing. Both behaviors are configurable by the user.

This extension embraces the need for protecting the privacy of users across the Internet; it is aimed at helping those who are already aware of existing policies to increase their productivity by decluttering their browsing experience.                    

확장 프로그램 기본 정보

이름 Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
공식 URL https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
설명 Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
파일 크기 128 KB
설치 횟수 55
현재 버전 1.0.5
최근 업데이트 2019-06-18
출시 날짜 2019-06-18
평점 5.00/5 총 1 개의 평점
개발자 https://unmorph.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://unmorph.com/free-the-web
도움말 페이지 URL https://unmorph.com/free-the-web
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Free The Web",
    "description": "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/*.json"
    ],
    "version": "1.0.5",
    "author": "Victor Pascu",
    "browser_action": {
        "default_title": "Free The Web",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persisent": false
    },
    "icons": {
        "128": "\/img\/icon-default-128.png"
    }
}