Decode Current URL

Decode Current URL

Takes the URL of the current tab, decodes it, and uses it to refresh the page.

Merlin
Additional files are visible only to premium users

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