Readable Shortcuts

Readable Shortcuts

Readable Shortcuts allows you to create readable personalized shortcuts for your links that are easy to recall.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Readable Shortcuts",
  "description": "Readable Shortcuts allows you to create readable personalized shortcuts for your links that are easy to recall.",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "omnibox": {
    "keyword": "sc"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "unlimitedStorage"
  ],
  "action": {
    "default_popup": "assets/html/popup.html"
  },
  "icons": {
    "16": "/assets/images/Yellow-NoBG-16_x_16.png",
    "32": "/assets/images/Yellow-NoBG-32_x_32.png",
    "48": "/assets/images/Yellow-NoBG-48_x_48.png",
    "128": "/assets/images/Yellow-NoBG-128_x_128.png"
  }
}