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”。
扩展截图
下载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 |
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" } |