Decode Current URL
Takes the URL of the current tab, decodes it, and uses it to refresh the page.
¿Qué es Decode Current URL?
Decode Current URL es una extensión de Chrome desarrollada por https://randyrants.com, y su función principal es "Takes the URL of the current tab, decodes it, and uses it to refresh the page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Decode Current URL
Descarga archivos de extensión Decode Current URL en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Decode Current URL |
ID | jeaicjgpfphdghcohfkamaaeapffgdcg |
URL Oficial | https://chromewebstore.google.com/detail/decode-current-url/jeaicjgpfphdghcohfkamaaeapffgdcg |
Descripción | Takes the URL of the current tab, decodes it, and uses it to refresh the page. |
Tamaño del Archivo | 14.66 KB |
Cantidad de Instalaciones | 12 |
Versión Actual | 0.0.0.4 |
Última Actualización | 2021-12-13 |
Fecha de Publicación | 2020-05-21 |
Calificación | 4.50/5 Total de 2 Calificaciones |
Desarrollador | https://randyrants.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.randyrants.com/ |
Idiomas Soportados | 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" } } |