Replace Text

Adds replace text to context menu.

Replace Text क्या है?

Replace Text Danny Keeley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds replace text to context menu."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Right click on some text and choose Replace Text to begin!
Can also solve maths if in (brackets)

## Updates ##
v0.2 Styling and bug fixes (May 2021)                    

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

नाम Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
आधिकारिक URL https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
विवरण Adds replace text to context menu.
फ़ाइल का आकार 10.45 KB
स्थापना संख्या 27
वर्तमान संस्करण 0.2
अंतिम अपडेट 2021-05-10
प्रकाशन तिथि 2021-05-08
डेवलपर Danny Keeley
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replace Text",
    "version": "0.2",
    "description": "Adds replace text to context menu.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}