Jumprope

Jumprope

Make the internet faster and upgrade your search with Jump commands.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Jumprope",
  "name": "Jumprope",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Make the internet faster and upgrade your search with Jump commands.",
  "icons": {
    "16": "logos/jumprope_16.png",
    "32": "logos/jumprope_32.png",
    "48": "logos/jumprope_48.png",
    "128": "logos/jumprope_128.png"
  },
  "background": {
    "scripts": [
      "/background/on_install_bg_script.js",
      "/background/auth_bg_script.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "logos/jumprope_16.png",
      "32": "logos/jumprope_32.png",
      "48": "logos/jumprope_48.png",
      "128": "logos/jumprope_128.png"
    },
    "default_popup": "index.html",
    "default_title": "Jumprope"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Jumprope",
      "keyword": "jrs",
      "search_url": "https://api.jumprope.ai/search?q={searchTerms}",
      "suggest_url": "https://api.jumprope.ai/suggest?q={searchTerms}",
      "instant_url": "https://api.jumprope.ai/search?q={searchTerms}",
      "favicon_url": "https://jumprope.ai/favicon.ico",
      "encoding": "UTF-8",
      "is_default": true
    },
    "startup_pages": [
      "https://www.jumprope.ai"
    ]
  },
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "*://*.jumprope.ai/*",
    "https://*/*",
    "http://localhost:8000/*",
    "http://localhost:9000/*"
  ]
}