Selekt - One click actions for text selection

Selekt - One click actions for text selection

Save time and enhance productivity by reducing multi click tasks to one click action

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Selekt - One click actions for text selection",
  "version": "1.1",
  "description": "Save time and enhance productivity by reducing multi click tasks to one click action",
  "author": "Ahsan S. Sher",
  "homepage_url": "https://ahsansher.com",
  "browser_action": {
    "default_icon": "./images/logo.png",
    "default_title": "Selekt",
    "default_popup": "index.html"
  },
  "icons": {
    "128": "./images/logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "./content-script/tooltip.css"
      ],
      "js": [
        "./content-script/tooltip.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.svg"
  ]
}