cow tab

cow tab

A simple, fast, new tab page, with a retro feel and good advice. Replicates the 'fortune | cowsay' command found on *Nix systems.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "cow tab",
  "manifest_version": 3,
  "description": "A simple, fast, new tab page, with a retro feel and good advice. Replicates the 'fortune | cowsay' command found on *Nix systems.",
  "version": "2.0",
  "default_locale": "en",
  "permissions": [
    "management",
    "storage"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "chrome_url_overrides": {
    "newtab": "newtab/newtab.html"
  },
  "background": {
    "service_worker": "background.js"
  }
}