Cool Kids

Add this to your browser and replace all instances of 'millenials' with 'cool kids'.

Cool Kids란 무엇입니까?

Cool Kids은(는) clare o'neill에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add this to your browser and replace all instances of 'millenials' with 'cool kids'."입니다.

확장 프로그램 스크린샷

screenshot

Cool Kids 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Problem: I was getting sick of reading think pieces about how being born in '91 makes me an inherently lazy, entitled piece of shit. 

Solution: I made this Chrome extension to replace all instances of "millennial(s)" with "cool kid(s)." 

Credit
Inspired by and using code from Drumpfinator Chrome (https://chrome.google.com/webstore/detail/drumpfinator/hcimhbfpiofdihhdnofbdlhjcmjopilp).
Repurposed with ♥ by a cool kid.                    

확장 프로그램 기본 정보

이름 Cool Kids Cool Kids
ID ogfgpkaggjlmfbapfkaahaopodjeeael
공식 URL https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael
설명 Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
파일 크기 22.63 KB
설치 횟수 53
현재 버전 1.0
최근 업데이트 2016-03-25
출시 날짜 2016-03-25
평점 5.00/5 총 4 개의 평점
개발자 clare o'neill
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cool Kids",
    "description": "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.",
    "version": "1.0",
    "permissions": [
        "http:\/\/*.google.com\/",
        "http:\/\/*.com\/",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Cool Kids",
        "default_popup": "popup.html"
    }
}