Modify href

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

Modify hrefคืออะไร?

Modify href เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://costbell.com และคุณลักษณะหลักของมันคือ "A Chrome extension for modifying the href / host / domain of the links on a web page"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Modify href

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}