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文件

下载Cool Kids扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}