Super Swift Open

Super Swift Open

Super Swift Open allows you to open multiple URLs in their own tab with a single click! Tired of always typing in the same URLs…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Super Swift Open",
  "short_name": "Swift Open",
  "version": "0.1.0",
  "options_page": "html/options.html",
  "browser_action": {
    "default_icon": {
      "19": "images/tab_new_raised.png",
      "38": "images/tab_new_raised.png",
      "48": "images/tab_new_raised.png",
      "128": "images/tab_new_raised.png"
    },
    "default_title": "Super Swift Open"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2
}