Simple Maker

Simple Maker

Расширение Simple Maker позволяет отслеживать последние загрузки видео на одноименный You Tube канал, при добавлении нового видео…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Maker",
  "version": "1.0.2",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "app/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "64": "app/imgs/64.png",
    "128": "app/imgs/128.png"
  },
  "permissions": [
    "notifications",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "app/js/jquery-3.1.0.min.js",
      "app/background.js"
    ]
  },
  "browser_action": {
    "default_title": "Simple Maker",
    "default_scripts": [
      "app/background.js"
    ]
  }
}