Infinity New Tab

Infinity New Tab

The New Tab chosen by millions,which can greatly improve productivity.Including web icons,search engines,HD wallpapers,and widgets like Weather,Notes,Bookmarks,To-do List,History,Extension Management,etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "page": "background/index.html"
  },
  "chrome_url_overrides": {
    "newtab": "newtab/index.html"
  },
  "name": "__MSG_name__",
  "description": "__MSG_extension_des_firefox__",
  "browser_action": {
    "default_title": "__MSG_add_to_infinity__",
    "default_popup": "popup/index.html",
    "default_icon": {
      "32": "icon/basic32.png",
      "96": "icon/basic96.png",
      "128": "icon/basic128.png"
    }
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en_US",
  "optional_permissions": [
    "https://google.com/",
    "https://suggestion.baidu.com/",
    "https://mail.google.com/",
    "notifications",
    "bookmarks",
    "topSites",
    "history",
    "<all_urls>"
  ],
  "version": "10.0.111",
  "icons": {
    "32": "icon/basic32.png",
    "96": "icon/basic96.png",
    "128": "icon/basic128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://infinity-api.infinitynewtab.com/*",
        "https://api.infinitynewtab.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "{92c1d525-9d52-44b0-b95d-92f98ac79d97}",
      "strict_min_version": "65.0"
    }
  }
}