Purple Journal

Purple Journal

Check your news

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Purple Journal",
  "version": "1.0",
  "description": "Check your news",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "tabs"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js",
      "thirdParty/canvasjs.min.js",
      "thirdParty/jquery.min.js",
      "HelloWorld.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.nytimes.com/*",
        "https://*.cnn.com/*",
        "https://*.huffpost.com/*",
        "https://*.foxnews.com/*",
        "https://*.usatoday.com/*",
        "https://*.reuters.com/*",
        "https://*.politico.com/*",
        "https://*.npr.org/*",
        "https://*.latimes.com/*",
        "https://*.breirbart.com/*",
        "https://*.nypost.com/*",
        "https://*.nbcnews.com/*",
        "https://*.cbsnews.com/*",
        "https://abcnews.go.com/*",
        "https://*.cbslocal.com/*",
        "https://*.newsweek.com/*",
        "https://*.nydailynews.com/*",
        "https://*.chicagotribune.com/*",
        "https://*.denverpost.com/*",
        "https://*.newsmax.com/*",
        "https://*.seatletimes.com/*",
        "https://*.newsday.com/*",
        "https://*.kcra.com/*",
        "https://*.fox40.com/*",
        "https://*.abc10.com/*",
        "https://*.sacbee.com/*"
      ],
      "css": [
        "styles.css",
        "thirdParty/animate.css"
      ],
      "js": [
        "HelloWorld.js",
        "thirdParty/canvasjs.min.js",
        "thirdParty/jquery.min.js",
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "html/*.html",
    "options.html",
    "images/Landing_Page_Logo.png",
    "images/Landing_Page_Logo_White.png",
    "images/get_started19_white.png",
    "images/arrow.png",
    "thirdParty/jquery.min.js",
    "thirdParty/bootstrap.min.js",
    "thirdParty/bootstrap.min.css"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "19": "images/get_started19.png",
      "32": "images/get_started32.png",
      "38": "images/get_started38.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "19": "images/get_started19.png",
    "32": "images/get_started32.png",
    "38": "images/get_started38.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}