Text Rewriter
Replace specified phrases on a page
Text Rewriter क्या है?
Text Rewriter pelmers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace specified phrases on a page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Text Rewriter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Arbitrary substitution of any visible text on a page. Rewrite customizable patterns in a page. Created mostly for personal amusement, inspired by XKCD #1288 and "butt to butt." By default provides a sensible "mispell" -> "misspell" replacement. Supports any Yavascripp regular expressions, including backrefs and captures. I just visit the visible text nodes on the page and use nodeValue.replace for each provided pattern. This means if there is an overlapping pair of patterns A -> B and B -> C, then both A and B go to C. Clicking the icon in the taskbar disables the addon for that domain. For example maybe you went a little overzealous with the substitutions and want to disable it on Slack because of possible... misunderstandings. Also has an experimental live update feature that will perform replacements on any text that appears even after the page loaded (such as Youtube captions).
एक्सटेंशन की मूल जानकारी
नाम | Text Rewriter |
ID | abmchgifbehnkekmmfmkkgdbhcphmeoi |
आधिकारिक URL | https://chromewebstore.google.com/detail/text-rewriter/abmchgifbehnkekmmfmkkgdbhcphmeoi |
विवरण | Replace specified phrases on a page |
फ़ाइल का आकार | 23.74 KB |
स्थापना संख्या | 917 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2024-01-14 |
प्रकाशन तिथि | 2018-08-15 |
रेटिंग | 4.27/5 कुल 11 रेटिंग्स |
डेवलपर | pelmers |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/pelmers/text-rewriter |
सहायता पृष्ठ URL | https://github.com/pelmers/text-rewriter/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Text Rewriter", "description": "Replace specified phrases on a page", "author": "Peter Elmers", "version": "2.0.1", "options_ui": { "page": "data\/prefs.html" }, "action": { "default_icon": "data\/icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "data\/text-rewriter.js" ], "all_frames": false, "run_at": "document_idle" } ], "permissions": [ "storage", "tabs" ], "background": { "service_worker": "lib\/main.js" }, "icons": { "48": "data\/icon.png", "64": "data\/icon64.png" } } |