Google URLS decoder

Google URLS decoder

Decode encoded arabic - and hebrew - urls in Google analytics and Google search console

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google URLS decoder",
  "short_name": "URLS decoder",
  "description": "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console",
  "version": "0.0.4",
  "author": "Ehab Alsharif",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://analytics.google.com/*",
        "https://www.google.com/webmasters/tools/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}