Forest Start Tabs

Forest Start Tabs

Forest Start Tabs - Visit The Woods Everyday

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Forest Start Tabs",
  "description": "Forest Start Tabs - Visit The Woods Everyday ",
  "version": "2.5",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "action": {
    "default_icon": "./img/icons/forest.png"
  },
  "icons": {
    "128": "./img/icons/forest.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "oauth2": {
    "client_id": "UiRNYB_QlQthhyvuYrBmg8n8JiLMuWFhKQ7wN3sPi_U",
    "scopes": [
      "<all urls>",
      "https://api.unsplash.com/photos/?"
    ],
    "content_security_policy": "script-src 'self'  'unsafe-inline' 'unsafe eval'  https://apis.google.com/js/client.js?; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "performance.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webNavigation",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}