Periodix

Periodix

Find job easy with Periodix web extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Periodix",
  "homepage_url": "https://periodix.net/",
  "version": "6.0.1",
  "description": "Find job easy with Periodix web extension.",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "notifications",
    "webRequest",
    "https://periodix.net/*",
    "https://www.upwork.com/*"
  ],
  "options_page": "options.html",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/images/16x16.png",
      "32": "assets/images/32x32.png",
      "48": "assets/images/48x48.png",
      "128": "assets/images/128x128.png"
    }
  },
  "web_accessible_resources": [
    "js/jquery.min.js",
    "js/popper.min.js",
    "js/cover-letter-button.js",
    "css/cover-letter-button.css",
    "cover-letter-button.html"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "content.js"
      ],
      "matches": [
        "https://periodix.net/*"
      ],
      "all_frames": true
    },
    {
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ],
      "matches": [
        "https://www.upwork.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "assets/images/16x16.png",
    "32": "assets/images/32x32.png",
    "48": "assets/images/48x48.png",
    "128": "assets/images/128x128.png"
  },
  "manifest_version": 2
}