Recoreco

あなたの動画視聴履歴から嗜好を分析し、あなたの興味のあった動画をウェブ上からレコメンドします
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Recoreco",
  "version": "0.0.7",
  "manifest_version": 2,
  "description": "あなたの動画視聴履歴から嗜好を分析し、あなたの興味のあった動画をウェブ上からレコメンドします",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "ja",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ]
}