Decode Current URL
Takes the URL of the current tab, decodes it, and uses it to refresh the page.
什麼是Decode Current URL?
Decode Current URL是由https://randyrants.com開發的Chrome擴展程式,該擴展的主要功能是“Takes the URL of the current tab, decodes it, and uses it to refresh the page.”。
擴展截圖
下載Decode Current URL擴展crx文件
下載Decode Current URL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is strictly an attempt to skip a number of mouse clicks - nothing more. When shopping online, I occasionally click on a URL that uses an "affiliate" URL - something I'm OK with - but because the referring URL is blocked by an ad blocker, I end up on a 404 page with an "encoded" URL in the address bar. Sure, I could copy that text, go to Bing, decode it (or more accurately unescape it) and paste it back into the browser, but why do all that clicking if an extension can do it for me? Here's a typical scenario: - I click on a link that's something like: https://referringbutblocked.com/sendmeto=https%3A%2F%2Fwww.randyrants.com%2F - I right click on the page and select Decode Current URL - Now the URL says: https://referringbutblocked.com/sendmeto=https://www.randyrants.com/ - I can now cut the front part of the URL and leave the decoded URL 0.0.0.4 moves to Manifest v3 for Extensions.
擴展基本資訊
名稱 | Decode Current URL |
ID | jeaicjgpfphdghcohfkamaaeapffgdcg |
官方網址 | https://chromewebstore.google.com/detail/decode-current-url/jeaicjgpfphdghcohfkamaaeapffgdcg |
簡介 | Takes the URL of the current tab, decodes it, and uses it to refresh the page. |
檔案大小 | 14.66 KB |
安裝次數 | 12 |
目前版本 | 0.0.0.4 |
更新時間 | 2021-12-13 |
上架時間 | 2020-05-21 |
評分 | 4.50/5 共 2 次評分 |
開發者 | https://randyrants.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.randyrants.com/ |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Decode Current URL", "version": "0.0.0.4", "manifest_version": 3, "description": "Takes the URL of the current tab, decodes it, and uses it to refresh the page.", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "contextMenus", "activeTab" ], "background": { "service_worker": "lib\/simple.js" }, "action": { "default_icon": "icons\/default_icon.png" } } |