Cookies Blocker

This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...

Cookies Blocker란 무엇입니까?

Cookies Blocker은(는) https://k-legrand.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept..."입니다.

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

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

확장 프로그램 사용 설명서

                        This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...
Keep in mind that this app does not accept cookies for you. It just hides sh*t tones of css rules.

Github: https://github.com/Manoz/Cookies-F-cker                    

확장 프로그램 기본 정보

이름 Cookies Blocker Cookies Blocker
ID dafambnlnkbfdkieoeaccchlmahiolof
공식 URL https://chromewebstore.google.com/detail/cookies-blocker/dafambnlnkbfdkieoeaccchlmahiolof
설명 This extension hides the "accept cookies?" popup when you visit a website. Because of course, you always accept...
파일 크기 47.74 KB
설치 횟수 1,052
현재 버전 1.2
최근 업데이트 2018-08-14
출시 날짜 2018-08-14
평점 3.69/5 총 13 개의 평점
개발자 https://k-legrand.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Manoz/Cookies-F-cker
도움말 페이지 URL https://github.com/Manoz/Cookies-F-cker/issues
지원되는 언어 en,fr
manifest.json
{
    "author": "Manoz",
    "name": "__MSG_extName__",
    "short_name": "CBlocker",
    "description": "__MSG_extDescription__",
    "version": "1.2",
    "manifest_version": 2,
    "default_locale": "en",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Let's block cookies!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab"
    ]
}