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によって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension for modifying the href / host / domain of the links on a web page」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Modify href拡張機能のCRXファイルをダウンロード

Modify href拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}