Mamma

Mamma

Personalize your new tab page with your own images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "5.0",
  "name": "Mamma",
  "short_name": "Mamma",
  "description": "Personalize your new tab page with your own images",
  "chrome_url_overrides": {
    "newtab": "./dist/index.html"
  },
  "action": {
    "default_popup": "./dist/popup.html"
  },
  "icons": {
    "16": "M-mamma-logo-16.png",
    "32": "M-mamma-logo-32.png",
    "48": "M-mamma-logo-48.png",
    "128": "M-mamma-logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScirptForAddingFav.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*",
        "https://twitter.com/*",
        "https://www.facebook.com/*"
      ],
      "js": [
        "contentScriptForEmail.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "cookies",
    "topSites",
    "bookmarks",
    "contextMenus",
    "management",
    "geolocation"
  ],
  "host_permissions": [
    "https://www.mammaextension.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'"
  }
}