Profitable CharmDate

Profitable CharmDate

Simplifies and automates routine processes on CharmDate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Profitable CharmDate",
  "description": "Simplifies and automates routine processes on CharmDate",
  "version": "4.21",
  "author": "Bogdan",
  "icons": {
    "16": "/dist/16.png",
    "48": "/dist/48.png",
    "128": "/dist/128.png"
  },
  "permissions": [
    "https://charmingdate.ru/*",
    "http://charmingdate.ru/*",
    "tabs",
    "notifications",
    "power"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.charmdate.com/*",
        "http://*.charmdate.com/*"
      ],
      "js": [
        "/dist/pollyfill.js",
        "/dist/jquery.js",
        "/dist/lscache.js",
        "/dist/chart.js",
        "/dist/moment.js",
        "/dist/angular.js",
        "/dist/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "/dist/pollyfill.js",
      "/dist/jquery.js",
      "/dist/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "CharmDate"
  }
}