Timed Browser

Timed Browser

Prove what research you have been doing on the web and for how long.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Timed Browser",
  "version": "0.1.6.8",
  "manifest_version": 2,
  "description": "Prove what research you have been doing on the web and for how long.",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Timed Browser",
    "default_popup": "toolbar.html#/?inPopup=1"
  },
  "permissions": [
    "idle",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "run_at": "document_start",
      "all_frames": false,
      "js": [
        "/scripts/content/content_page_1.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "mini-report.html",
    "idle-popup.html",
    "toolbar.html",
    "options.html",
    "styles/*",
    "images/*",
    "bower_components/*",
    "templates/widgets/content/*",
    "scripts/services/app.*.js.map",
    "scripts/services/helpers/*",
    "scripts/services/content/*",
    "scripts/content/*",
    "scripts/core/*",
    "scripts/filters/*",
    "scripts/filters/*",
    "scripts/widgets/*",
    "scripts/controllers/*",
    "scripts/apps/content/*"
  ]
}