Tabmarks

Tabmarks

New tab page to keep you in your flow.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.0.12",
  "name": "Tabmarks",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtjfVTGg7/XwdD/SFIaMbWz6KO17iKt358B4KGSQ47lCz/QZKdMrWJQ4Ngp5N8pKVNiGpF5L8CQtYqwjLdIfDyObaoP0++rfNKsVxoKX+gezDj/beMakgTRjYf5o0MZFELxYRU1WIdVjuWUvEGaPsAu5URdgYD1NAa8xfzm53WQiAtZH+tVIV+Q7iYBUwC1UAr1If/Vif5Ml70K1ARafyd9kGTlOL2ISGZJ985JU467+cIQmaCcd5rPxnlxNLkapgkLJTCFZB8Ga9FH1J63pbOv8sJXhwpXTjMf2YNEPTpnGweio0zbofpP2OtghOA2keJbSSCLVkiGsskswh1t8fQQIDAQAB",
  "description": "New tab page to keep you in your flow.",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "64": "images/icon.png"
  },
  "permissions": [
    "bookmarks",
    "favicon",
    "history",
    "tabs",
    "storage",
    "webNavigation",
    "topSites",
    "identity"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "https://tabmarks.app/"
  ],
  "action": {
    "default_title": "Pin as Tabmark",
    "default_icon": {
      "64": "images/icon_disabled.png"
    }
  },
  "oauth2": {
    "client_id": "32892031933-g08tmf4n4lpph1uklronrbr8rraebakd.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  }
}