Bookmark manager, Shorten URL, Text highlight

Bookmark manager, Shorten URL, Text highlight

Save links to linkish.io dashboard, shorten links for sharing, highlight text on webpages and add comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bookmark manager, Shorten URL, Text highlight",
  "description": "Save links to linkish.io dashboard, shorten links for sharing, highlight text on webpages and add comments",
  "version": "1.1.4",
  "manifest_version": 2,
  "icons": {
    "32": "assets/images/logo-32.png",
    "48": "assets/images/logo-48.png",
    "96": "assets/images/logo-96.png",
    "128": "assets/images/logo-128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "unlimitedStorage",
    "clipboardWrite",
    "<all_urls>"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": "assets/images/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "assets/js/purify.min.js",
        "lib.js",
        "comment.js",
        "content.js"
      ],
      "css": [
        "assets/css/highlight.css",
        "assets/css/muli-fonts.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-3.5.1.min.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "assets/*",
    "*.png",
    "*.ttf",
    "*.eot",
    "*.woff2"
  ]
}