Meteor New Tab - Makes Your Bookmarks Great Again

Meteor New Tab - Makes Your Bookmarks Great Again

Meteor New Tab is based on your favorite contents to let your favorite be visible on the tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "permissions": [
    "bookmarks",
    "storage"
  ],
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": {
    "extension_page": "script-src 'self'"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "name": "__MSG_meteor_name__",
  "description": "__MSG_meteor_description__",
  "version": "2.4.2",
  "homepage_url": "https://xiaoshuapp.com/meteor",
  "default_locale": "zh_CN",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/*"
      ],
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://roam.mixcm.com/*"
      ],
      "js": [
        "js/chainwon.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/youtube.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{99646b8e-a5b2-4e52-b9ac-c38fcc1f108b}"
    }
  }
}