WordBird
Find and Replace Words on Websites.
WordBird क्या है?
WordBird thalida द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find and Replace Words on Websites."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WordBird एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Ever wanted to replace all instances of "word" with "bird"? Well, now you can! As well as any and all other word/phrase replacements your mind can dream of.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | phjelaokjghhjogbfmkljhghhnbidfgk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk |
विवरण | Find and Replace Words on Websites. |
फ़ाइल का आकार | 978 KB |
स्थापना संख्या | 13 |
वर्तमान संस्करण | 1.0.5 |
अंतिम अपडेट | 2017-02-17 |
प्रकाशन तिथि | 2017-02-17 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | thalida |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/thalida/WordBird |
सहायता पृष्ठ URL | https://github.com/thalida/WordBird/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WordBird", "description": "Find and Replace Words on Websites.", "version": "1.0.5", "author": "thalida", "homepage_url": "https:\/\/github.com\/thalida\/WordBird", "permissions": [ "storage" ], "icons": { "19": "icons\/icon-on.19.png", "48": "icons\/icon-on.48.png", "128": "icons\/icon-on.128.png" }, "browser_action": { "default_icon": { "19": "icons\/icon-on.19.png", "48": "icons\/icon-on.48.png", "128": "icons\/icon-on.128.png" }, "default_popup": "public\/dist\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_page": "public\/dist\/options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |