Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Cool Kids là gì?
Cool Kids là một tiện ích mở rộng Chrome được phát triển bởi clare o'neill, và tính năng chính của nó là "Add this to your browser and replace all instances of 'millenials' with 'cool kids'.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cool Kids
Tải xuống các tệp mở rộng Cool Kids dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cool Kids |
ID | ogfgpkaggjlmfbapfkaahaopodjeeael |
URL Chính Thức | https://chromewebstore.google.com/detail/cool-kids/ogfgpkaggjlmfbapfkaahaopodjeeael |
Mô tả | Add this to your browser and replace all instances of 'millenials' with 'cool kids'. |
Kích Thước Tệp | 22.63 KB |
Số Lần Cài Đặt | 53 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-03-25 |
Ngày Phát Hành | 2016-03-25 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | clare o'neill |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |