STTF Url Generator

STTF Url Generator

Generate a url with text fragment and copy it to the clipboard or open it in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "STTF Url Generator",
  "version": "1.3",
  "author": "Chun Liu",
  "description": "Generate a url with text fragment and copy it to the clipboard or open it in a new tab.",
  "permissions": [
    "clipboardWrite",
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "images/sttf-url16.png",
    "32": "images/sttf-url32.png",
    "48": "images/sttf-url48.png",
    "128": "images/sttf-url128.png"
  },
  "minimum_chrome_version": "80"
}