TurtleTab

TurtleTab

Chrome extension with built-in weather, todo, notes, and google search functions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TurtleTab",
  "description": "Chrome extension with built-in weather, todo, notes, and google search functions",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": {
      "16": "./assets/turtle16.png",
      "48": "./assets/turtle48.png",
      "128": "./assets/turtle128.png"
    },
    "default_title": "TurtleTab"
  },
  "icons": {
    "16": "./assets/turtle16.png",
    "48": "./assets/turtle48.png",
    "128": "./assets/turtle128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "./background.js"
    ]
  },
  "manifest_version": 2,
  "author": "Chingu Voyage2-Turtles-11",
  "content_security_policy": "script-src 'self' https://apis.google.com/ https://ajax.googleapis.com https://use.fontawesome.com/b106d0e252.js 'unsafe-eval' ; object-src 'self' ",
  "permissions": [
    "activeTab",
    "tabs",
    "bookmarks",
    "geolocation",
    "history",
    "storage",
    "topSites",
    "management",
    "chrome://favicon/"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.google.com/*",
      "https://*.fontawesome.com/*"
    ]
  },
  "incognito": "not_allowed"
}