Modify href

A Chrome extension for modifying the href / host / domain of the links on a web page

Modify href क्या है?

Modify href https://costbell.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension for modifying the href / host / domain of the links on a web page"।

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

screenshot
screenshot
screenshot

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

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

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

                        This simple extension does one simple thing: change the href on your current page

A Chrome extension for modifying the href / host / domain of the links on a web page

This small tool will be extremely helpful when you are hitting your own app host directly while links on your web app should rather point to the other hosts or public domain. It will replace the href in the DOM level so there will be no conflict with the javascript events that you might have on your anchor tags.

How to use:
1. Install the Chrome extension

2. Go to the options page of this extension

3. Enter the old href that you want to be replaced (e.g. abc.com, abc.com/xyz)

4. Enter the new href that you want to use (e.g. cba.com, cba.com/zyx)

5. Load your page

6. Click the extension icon!                    

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

नाम Modify href Modify href
ID lplamhoijkpfdopdcoplgfkjghhbbpnc
आधिकारिक URL https://chromewebstore.google.com/detail/modify-href/lplamhoijkpfdopdcoplgfkjghhbbpnc
विवरण A Chrome extension for modifying the href / host / domain of the links on a web page
फ़ाइल का आकार 123 KB
स्थापना संख्या 197
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2022-11-18
प्रकाशन तिथि 2015-08-21
रेटिंग 4.00/5 कुल 9 रेटिंग्स
डेवलपर https://costbell.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/buy/modify-href
सहायता पृष्ठ URL https://github.com/buy/modify-href
गोपनीयता नीति पृष्ठ URL https://costbell.com/privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Modify href",
    "description": "A Chrome extension for modifying the href \/ host \/ domain of the links on a web page",
    "version": "0.0.4",
    "options_page": "\/src\/options\/options.html",
    "browser_action": {
        "default_icon": "\/images\/off48.png",
        "default_title": "Click to modify!"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "\/src\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "\/images\/off16.png",
        "32": "\/images\/off32.png",
        "48": "\/images\/off48.png",
        "64": "\/images\/off64.png",
        "128": "\/images\/off128.png"
    },
    "author": "Chang Liu"
}