Friendly Tab - New Tab Page

Friendly Tab - New Tab Page

Заменяет стандартную страницу новой вкладки, на минималистичную версию с вашими категориями и списками

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "ru",
  "name": "Friendly Tab - New Tab Page",
  "short_name": "Friendly Tab",
  "description": "__MSG_app_desc__",
  "author": "Friendly Tab Dev",
  "version": "1.1.0",
  "icons": {
    "16": "imgs/16.png",
    "32": "imgs/32.png",
    "48": "imgs/48.png",
    "96": "imgs/96.png",
    "128": "imgs/128.png"
  },
  "permissions": [
    "tabs",
    "unlimitedStorage",
    "storage",
    "favicon"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "js/bg.js"
  },
  "action": {
    "default_popup": "pages/popup.html",
    "default_icon": "imgs/48.png"
  },
  "chrome_url_overrides": {
    "newtab": "pages/newtab.html"
  },
  "omnibox": {
    "keyword": "--0"
  },
  "content_scripts": [
    {
      "matches": [
        "http://friendly-tab.net/*",
        "https://friendly-tab.net/*"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}