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'.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |