Remove URL Transfer Everywhere
Remove URL Transfer everywhere with the rules you set
什么是Remove URL Transfer Everywhere?
Remove URL Transfer Everywhere是由Hoothin开发的Chrome扩展程序,该扩展的主要功能是“Remove URL Transfer everywhere with the rules you set”。
扩展截图
下载Remove URL Transfer Everywhere扩展crx文件
下载Remove URL Transfer Everywhere扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Since some tag on page transfer the real URL links for statistics. Remove URL Transfer with the regular expressions you set to get direct links. You can set rules with regExp in the popup box and separate multiple regExp rules with line breaks. Rules as: baidu: www\.baidu\.com/link\?url= tieba: safecheck/index\?url= zhihu: link\.zhihu\.com/\?target= 360: www\.so\.com/link\?url= Advance rules: *,www\.so\.com/link\?url= Means remove transfer when mouse hover on tag 0.5,www\.so\.com/link\?url= means remove transfer every 0.5 second This extension has deleted google's redirect
扩展基本信息
名称 | Remove URL Transfer Everywhere |
ID | iflffmccfajoabhllglecneiglakjgna |
官方URL | https://chromewebstore.google.com/detail/remove-url-transfer-every/iflffmccfajoabhllglecneiglakjgna |
简介 | Remove URL Transfer everywhere with the rules you set |
文件大小 | 118 KB |
安装次数 | 2,755 |
当前版本 | 1.2.8 |
更新时间 | 2021-11-26 |
上架时间 | 2018-07-31 |
评分 | 2.57/5 共44次评分 |
开发者 | Hoothin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.2.8", "default_locale": "en", "manifest_version": 3, "description": "__MSG_extDescription__", "icons": { "128": "icon\/icon128.png", "16": "icon\/icon16.png", "48": "icon\/icon48.png" }, "action": { "default_icon": "favicon.png", "default_title": "__MSG_extName__", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "js\/content.js" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "tabs", "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "js\/background.js" } } |