Canonical Url Detector

Canonical Url Detector

If the page has Canonical URL, you can click to switch the URL in address bar.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Canonical Url Detector",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.1.3",
  "author": "irok",
  "homepage_url": "https://github.com/irok/CanonicalUrlDetector",
  "icons": {
    "16": "img/icon-canonical.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "16": "img/icon-disabled.png"
    },
    "default_title": "Canonical Url Detector"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}