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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Takes the URL of the current tab, decodes it, and uses it to refresh the page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Decode Current URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}