Select like a Boss

Select like a Boss

With this extension, you can easily select link text just like regular text, making it easier to copy. Just Select like a Boss! ;)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Select like a Boss",
  "short_name": "Select bossily",
  "version": "2023.7.42",
  "description": "With this extension, you can easily select link text just like regular text, making it easier to copy. Just Select like a Boss! ;)",
  "author": "lcandy2",
  "homepage_url": "https://github.com/lcandy2/Select-like-a-Boss",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_ui": {
    "page": "help.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_end",
      "js": [
        "Select-like-a-Boss.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "version_name": "2023 Jul 42",
  "offline_enabled": true
}