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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}