Pulse Start Page - New Tab

Pulse Start Page - New Tab

Display the latest and most important updates simply and where no one can miss them: in everyone's new browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Pulse Start Page - New Tab",
  "short_name": "Pulse Start Page",
  "description": "Display the latest and most important updates simply and where no one can miss them: in everyone's new browser tab.",
  "version": "2.2.2",
  "manifest_version": 2,
  "icons": {
    "16": "assets/icons/icon_16.png",
    "48": "assets/icons/icon_48.png",
    "128": "assets/icons/icon_128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "unlimitedStorage",
    "cookies",
    "https://api.rollbar.com/",
    "https://*.pulse.so/*",
    "https://pulseql.com/*",
    "https://*.pulsegw.com/*",
    "https://localhost:3000/*"
  ],
  "background": {
    "scripts": [
      "constants.js",
      "localforage.min.js",
      "amazon-cognito-identity.min.js",
      "aws-amplify.min.js",
      "browser-polyfill.js",
      "jwt-decode.min.js",
      "graphql.js",
      "auth.js",
      "queryAndCache.js",
      "actions.js",
      "rollbar.js",
      "queries.js",
      "background.js"
    ],
    "persistent": false
  },
  "omnibox": {
    "keyword": "p"
  },
  "browser_action": {
    "default_title": "Pulse",
    "default_popup": "popup/popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "tab/tab.html"
  },
  "web_accessible_resources": [
    "assets/*.css",
    "assets/*.js",
    "assets/*.woff",
    "assets/*.woff2",
    "assets/*.ttf",
    "assets/*.eot",
    "assets/*.png",
    "assets/base.css",
    "assets/choices.min.js",
    "assets/choices.min.css",
    "assets/pulse-lists.html",
    "assets/pulse-lists.js",
    "assets/send-pulse-confirm.html",
    "assets/send-pulse-confirm.js",
    "assets/suggest-pulse.html",
    "assets/suggest-pulse.js",
    "assets/see-pulse-draft.html",
    "assets/see-pulse-draft.js",
    "assets/login.html",
    "assets/login.js",
    "assets/login-with-intro.html",
    "assets/login-with-intro.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.pulse.so/*",
        "*://*.pulseasync.com/*",
        "*://localhost/*"
      ],
      "js": [
        "browser-installed-checker.js"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://cdn.rollbar.com https://api.rollbar.com; object-src 'self' https://cdn.rollbar.com https://api.rollbar.com;",
  "browser": "chrome",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}