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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://randyrants.com และคุณลักษณะหลักของมันคือ "Takes the URL of the current tab, decodes it, and uses it to refresh the page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Decode Current URL

ดาวน์โหลดไฟล์ส่วนขยาย 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 Decode Current URL
ID jeaicjgpfphdghcohfkamaaeapffgdcg
URL อย่างเป็นทางการ 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"
    }
}