Links Panel

Links Panel

Collate all the links on the page into an easily accessible panel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "version": "1.4.4",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "author": "Léon McGregor",
  "homepage_url": "https://github.com/LonMcGregor/LinksPanel",
  "background": {
    "scripts": [
      "panel.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "16.png",
      "24": "24.png",
      "32": "32.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "panel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "content.js"
  ],
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "incognito": "split"
}