Cool Kids

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

Apa itu Cool Kids?

Cool Kids adalah ekstensi Chrome yang dikembangkan oleh clare o'neill, dan fitur utamanya adalah "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cool Kids

Unduh file ekstensi Cool Kids dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Cool Kids Cool Kids
ID ogfgpkaggjlmfbapfkaahaopodjeeael
URL Resmi https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael
Deskripsi Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Ukuran File 22.63 KB
Jumlah Instalasi 53
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-03-25
Tanggal Publikasi 2016-03-25
Penilaian 5.00/5 Total 4 Penilaian
Pengembang clare o'neill
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}