Host name rewriter

Rewrite URLs for using a different host when accessing a web page.

Host name rewriter क्या है?

Host name rewriter Mattias Lundberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rewrite URLs for using a different host when accessing a web page."।

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

screenshot

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

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

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

                        Extension for rewriting of host names when accessing a webpage. Will rewrite the host name regardless of method of access, both clicking a link and writing URL will work.

Usage example: Attempts to reach 'example.com/something' will be redirected to 'mydomain.com/something'.

A sub domain, 'sub.example.com', will not be rewritten if a rule for 'example.com' is present. A specific rule for 'sub.example.com' needs to be added.

The extension needs to be configured from the extension button or options page before starting to work.

Version History
* 1.3.0 - Fix rewrite after redirect
* 1.2.1 - Sync changes between options and action.
* 1.2.0 - Improvements of interface and usability
* 1.1.0 - Improve performance and interface
* 1.0.1 - Fix installation
* 1.0.0 - Initial release                    

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

नाम Host name rewriter Host name rewriter
ID kgkjmljnaneinhnbbdhigejjffonhffb
आधिकारिक URL https://chromewebstore.google.com/detail/host-name-rewriter/kgkjmljnaneinhnbbdhigejjffonhffb
विवरण Rewrite URLs for using a different host when accessing a web page.
फ़ाइल का आकार 28.02 KB
स्थापना संख्या 1,358
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2017-10-14
प्रकाशन तिथि 2017-10-14
रेटिंग 3.21/5 कुल 14 रेटिंग्स
डेवलपर Mattias Lundberg
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mattiaslundberg/HostNameRewriter
सहायता पृष्ठ URL https://github.com/mattiaslundberg/HostNameRewriter
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Host name rewriter",
    "manifest_version": 2,
    "version": "1.3.0",
    "description": "Rewrite URLs for using a different host when accessing a web page.",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png"
        },
        "default_title": "Host name rewriter"
    }
}