Modify href
A Chrome extension for modifying the href / host / domain of the links on a web page
Modify href là gì?
Modify href là một tiện ích mở rộng Chrome được phát triển bởi https://costbell.com, và tính năng chính của nó là "A Chrome extension for modifying the href / host / domain of the links on a web page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Modify href
Tải xuống các tệp mở rộng Modify href dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Modify href |
ID | lplamhoijkpfdopdcoplgfkjghhbbpnc |
URL Chính Thức | https://chromewebstore.google.com/detail/modify-href/lplamhoijkpfdopdcoplgfkjghhbbpnc |
Mô tả | A Chrome extension for modifying the href / host / domain of the links on a web page |
Kích Thước Tệp | 123 KB |
Số Lần Cài Đặt | 197 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2022-11-18 |
Ngày Phát Hành | 2015-08-21 |
Đánh Giá | 4.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | https://costbell.com |
support@costbell.com | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/buy/modify-href |
URL Trang Trợ Giúp | https://github.com/buy/modify-href |
URL Trang Chính Sách Bảo Mật | https://costbell.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" } |