Word Changer

Have fun replacing all instances of one word with another on pages you visit.

Word Changer क्या है?

Word Changer skulegirlanna द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Have fun replacing all instances of one word with another on pages you visit."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Word Changer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension lets you change a word of your choosing with a different one on websites that you're viewing. 

For instance, you can change "Bill Gates" to "Shrek" on his Wikipedia page! What fun!   

Configure the search and replace words in the extension. Then click on the extension in your browser while on a page where you want to do the word changing, and voila!

Note that this is actually written by my 8 & 10 year old sons, who think this is the best way to learn how to program.                    

एक्सटेंशन की मूल जानकारी

नाम Word Changer Word Changer
ID jjaeodeafkbbimejiboehejbdgpebjcd
आधिकारिक URL https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd
विवरण Have fun replacing all instances of one word with another on pages you visit.
फ़ाइल का आकार 12.41 KB
स्थापना संख्या 1,361
वर्तमान संस्करण 0.2
अंतिम अपडेट 2021-03-08
प्रकाशन तिथि 2020-02-19
रेटिंग 2.43/5 कुल 14 रेटिंग्स
डेवलपर skulegirlanna
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Changer",
    "description": "Have fun replacing all instances of one word with another on pages you visit.",
    "version": "0.2",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Run WordChanger!"
    },
    "icons": {
        "16": "Icon16.png",
        "48": "Icon48.png",
        "128": "Icon128.png"
    }
}