Cool Kids
Add this to your browser and replace all instances of 'millenials' with 'cool kids'.
Cool Kids क्या है?
Cool Kids clare o'neill द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add this to your browser and replace all instances of 'millenials' with 'cool kids'."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cool Kids एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |