100 search results at once

100 search results at once

With one click, you can open all Google search results in other tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "ja",
  "version": "1.0.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*",
        "https://www.google.co.jp/*"
      ],
      "js": [
        "js/contentscripts.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "img/icon_128.png",
    "default_title": "100ページ一括表示"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "128": "img/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}