Real Python Content Recommender

Real Python Content Recommender

A content recommendation engine for Real Python

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Real Python Content Recommender",
  "description": "A content recommendation engine for Real Python",
  "version": "0.0.0.1",
  "browser_action": {
    "default_title": "Show Tabs in this Process",
    "default_icon": "icon-16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "background",
    "storage",
    "https://realpython-recommender.herokuapp.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persist": false
  },
  "manifest_version": 2,
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}