LISHT

LISHT

This extension helps you save your favorite webpages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LISHT",
  "short_name": "Make the most of a new tab",
  "description": "This extension helps you save your favorite webpages.",
  "version": "1.0.1",
  "author": "Michaela Lehr @fischaelameer",
  "icons": {
    "19": "Icon-19.png",
    "38": "Icon-38.png",
    "48": "Icon-48.png",
    "128": "Icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "Icon-19.png",
      "38": "Icon-38.png"
    },
    "default_title": "Open a new tab to view your lisht"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "page": "index.html",
    "persistent": false
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-e2mbCcYVduaVv1oDVzrOEUX2FdFHAkqgmhkoVQKbgPA' 'sha256-iTLA81vbHvJirstpFb6vFIOEXQM7PcDzF9tCbdLzV4A'; object-src 'self'",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "http://*/"
  ],
  "web_accessible_resources": [
    "css/main.css",
    "scripts/*",
    "lib/*"
  ]
}