X-Favorites

X-Favorites

X-Favorites - Easy to save and access your favorites in a popup or newtab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "X-Favorites",
  "version": "3.5.0",
  "manifest_version": 2,
  "description": "X-Favorites - Easy to save and access your favorites in a popup or newtab page.",
  "browser_action": {
    "default_title": "X-Favorites",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com 'unsafe-eval'; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+X",
        "linux": "Ctrl+Shift+X",
        "mac": "Ctrl+Shift+X",
        "windows": "Ctrl+Shift+X"
      }
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "homepage_url": "https://xfav.org",
  "permissions": [
    "https://*/*",
    "http://*/*",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "jquery-1.7.1.min.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "theme/*",
    "img/*"
  ]
}