Idenati - The Internet Home Screen

Idenati - The Internet Home Screen

Replace your new tab page with Idenati, your home screen for the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Replace your new tab page with Idenati, your home screen for the internet.",
  "version": "6.0.0",
  "manifest_version": 3,
  "name": "Idenati - The Internet Home Screen",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logo.png"
  },
  "icons": {
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "autofillContentScript.bundle.js",
        "autofillerContentScript.bundle.js",
        "notificationsContentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://idenati.com/*",
        "https://labs.idenati.com/*",
        "https://stg.idenati.com/*",
        "http://localhost:8080/*"
      ],
      "js": [
        "idenatiContentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "icon-blue.png",
        "logo.png"
      ],
      "matches": []
    },
    {
      "resources": [
        "iframe.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "tabs",
    "history"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://idenati.com/*",
      "https://labs.idenati.com/*",
      "https://stg.idenati.com/*",
      "http://localhost/*"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newTab.html"
  }
}