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
官方網址 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"
    }
}