WebEdit Pro

Replace text in any websites, tailoring the content to your preferences

WebEdit Pro क्या है?

WebEdit Pro cyberfury10 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace text in any websites, tailoring the content to your preferences"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        What is WebEdit Pro? 
It is completely free and open source chrome extension

What does it do?
It finds and replaces the texts of the website

How is it different from other text replacing extensions?
- WebEdit Pro is very sophisticated text replacing extension. 
- It offers enable/disable option on website list, find & replace texts. With this, user need not delete the data to stop the text replacement rather enable/disable the items.
- When you have thousands of entries, it is painful to use form and save all those entries. WebEdit Pro offers a powerful feature called "Bulk edit" (inspired by postman) to add hundreds and thousands of entries at once

What inspired to create this extension?

Github doesn't offer a feature to choose what name to display in repositories 
https://github.com/orgs/community/discussions/10840

If user names are auto generated for a team sometimes it goes with the alphanumeric Ids K43234 as mentioned here https://github.com/orgs/community/discussions/10840#discussioncomment-2814682 

It will be painful for the contributors of that repository to read things, imagine there are 100 users under that repository with auto generated alphanumeric ids and whenever there is a notification 

"K43234 committed a new change"
"K43235 raised a new PR"

With mapping like follows,

K43234 -> "John"
K43235 -> "Bruce"
...

WebEdit Pro can find & replace Alpha numeric username to desired name, with bulk edit feature in place it is easy to do the mapping even for 1000 users

result would be:
"John committed a new change"
"Bruce raised a new PR"


As mentioned above it is an open source following is repo
Github link - https://github.com/cyberfury10/web-edit-pro                    

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

नाम WebEdit Pro WebEdit Pro
ID poacbppnkkaljgcfcgmabigfjhbkfdle
आधिकारिक URL https://chromewebstore.google.com/detail/webedit-pro/poacbppnkkaljgcfcgmabigfjhbkfdle
विवरण Replace text in any websites, tailoring the content to your preferences
फ़ाइल का आकार 311 KB
स्थापना संख्या 40
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2023-08-24
प्रकाशन तिथि 2023-08-22
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर cyberfury10
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/images\/replace-icon-16.png",
        "32": ".\/images\/replace-icon-32.png",
        "48": ".\/images\/replace-icon-48.png",
        "128": ".\/images\/replace-icon-128.png"
    },
    "name": "WebEdit Pro",
    "description": "Replace text in any websites, tailoring the content to your preferences",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}