Time to Thrive news feed

Time to Thrive news feed

Time to Thrive news feed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Time to Thrive news feed",
  "description": "Time to Thrive news feed",
  "version": "1.0.3",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/",
        "http://*.theage.com.au/",
        "https://*.theage.com.au/",
        "http://*.smh.com.au/",
        "https://*.smh.com.au/",
        "http://*.news.com.au/",
        "https://*.news.com.au/",
        "http://*.heraldsun.com.au/",
        "https://*.heraldsun.com.au/",
        "http://*.dailytelegraph.com.au/",
        "https://*.dailytelegraph.com.au/"
      ],
      "js": [
        "jquery-2.2.3.min.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "browser_icon_grey.png",
    "default_title": "Time to Thrive news feed",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "assets/article-logo.png"
  ],
  "manifest_version": 2
}