Tero Tabs

Tero Tabs

Customize your new tab page so you can fight climate change while browsing the web. Save trees by doing what you do every day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tero Tabs",
  "short_name": "Tero Tabs",
  "version": "2.1",
  "description": "Customize your new tab page so you can fight climate change while browsing the web. Save trees by doing what you do every day.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Tero Tabs",
    "default_popup": "popup.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": " sandbox allow-scripts; script-src 'self' https://www.google-analytics.com/analytics.js https://api.cloudsponge.com; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.opentabs.org/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.opentabs.org/*"
    ]
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs"
  ],
  "host_permissions": [
    "*://*.opentabs.org/*"
  ],
  "optional_permissions": [
    "topSites"
  ]
}