SEObserver

SEObserver

SEObserver Chrome Extension - Finds the Backlink which has been clicked.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "favicon.png",
    "default_title": "SEObserver Find Backlink"
  },
  "name": "SEObserver",
  "description": "SEObserver Chrome Extension - Finds the Backlink which has been clicked.",
  "icons": {
    "64": "favicon.png"
  },
  "homepage_url": "https://www.seobserver.com",
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "version": "0.1.3",
  "manifest_version": 2
}