ScreenLab Extension

ScreenLab Extension

Run ScreenLab simulated eye tracking scans on any web page directly in Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ScreenLab Extension",
  "version": "1.0",
  "author": "ScreenLab Ltd",
  "short_name": "ScreenLab",
  "description": "Run ScreenLab simulated eye tracking scans on any web page directly in Chrome",
  "background": {
    "persistent": true,
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon128.png",
    "default_title": "ScreenLab"
  },
  "permissions": [
    "activeTab",
    "storage",
    "https://screenlab.io/",
    "http://screenlab.io/"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}