Welovelinks

Welovelinks

Convert links of all your active tabs to a single shortlink for easy sharing.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Welovelinks",
  "version": "1.2.0",
  "description": "Convert links of all your active tabs to a single shortlink for easy sharing.",
  "homepage_url": "https://www.welovelinks.com",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "67.0"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "*://www.welovelinks.com/*",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup/create.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.welovelinks.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}