Careers Page Finder

Careers Page Finder

This extension allows you to easily find the sneaky careers url on any page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Careers Page Finder",
  "description": "This extension allows you to easily find the sneaky careers url on any page",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icons/icon-19.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon-16-active.png",
    "19": "icons/icon-19-active.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "declarativeContent",
    "webNavigation",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "content_page.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com/ga.js; object-src 'self'"
}