Content Censor

Changes web pages with unpleasant things to less unpleasant things in the most childish manner imaginable.

Content Censor란 무엇입니까?

Content Censor은(는) Content Censor Developer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes web pages with unpleasant things to less unpleasant things in the most childish manner imaginable."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Content Censor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension will replace all references of certain unpleasant words (which you specify) on websites you visit to other, more humorous (and definitely more childish) words!

By default, Content Censor:
- Replaces 'iPhone' with 'Abortion'.
- Replaces 'republican' with 'pervert'.
- Replaces 'tea party' with 'rape philosophy party'.
- Replace 'GOP' with 'CUNT'.

Definitely a must-have for any left-leaning Android platform aficionados with the  intellectual maturity of a 10 year old.

NEW in 2.0! Set up your own words to replace! Tired of reading about disease and famine? Sick of the deluge of death news out of Hollywood? Ignore it with something funner! Now in Content Censor 2.0!

Confuse and frighten your friends! Make your daily tech blog funnier to read! OFFEND PEOPLE YOU CARE ABOUT WHO ARE IN THE SAME ROOM!                    

확장 프로그램 기본 정보

이름 Content Censor Content Censor
ID iaijmkccajdcoanhapmfihooogolkggi
공식 URL https://chrome.google.com/webstore/detail/content-censor/iaijmkccajdcoanhapmfihooogolkggi
설명 Changes web pages with unpleasant things to less unpleasant things in the most childish manner imaginable.
파일 크기 37.61 KB
설치 횟수 19
현재 버전 2.0.2
최근 업데이트 2015-11-18
출시 날짜 2015-11-18
평점 3.00/5 총 6 개의 평점
개발자 Content Censor Developer
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Censor",
    "author": "Content Censor Developer",
    "description": "Changes web pages with unpleasant things to less unpleasant things in the most childish manner imaginable.",
    "version": "2.0.2",
    "icons": {
        "48": "contentcensor48.png",
        "128": "contentcensor128.png"
    },
    "browser_action": {
        "default_icon": "contentcensor48.png",
        "default_popup": "index.htm"
    },
    "background": {
        "scripts": [
            "eventPages.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "popup.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}