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 |
官方網址 | 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" } } |