Linkclump

Linkclump

Lets you open, copy or bookmark multiple links at the same time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Linkclump",
  "version": "2.9.5",
  "description": "Lets you open, copy or bookmark multiple links at the same time.",
  "background": {
    "scripts": [
      "settings_manager.js",
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "pages/options.html",
  "icons": {
    "16": "images/16x16.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "linkclump.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "bookmarks",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "pages/test_area.html"
  ]
}