Link Preserver for Trello

Link Preserver for Trello

Prevent Trello from transforming your links in card descriptions, checklist items, and comments.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Preserver for Trello",
  "version": "4.0.0",
  "icons": {
    "16": "assets/icons/favicon.png",
    "32": "assets/icons/favicon.png",
    "48": "assets/icons/favicon.png",
    "128": "assets/icons/favicon.png"
  },
  "description": "Prevent Trello from transforming your links in card descriptions, checklist items, and comments.",
  "homepage_url": "https://tinypowerups.com",
  "short_name": "Link Preserver",
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "https://api-gateway.trello.com/*",
    "https://trello.com/*",
    "https://trello.com/b/*",
    "https://*.trello.com/*",
    "https://tinypowerups.com/*"
  ],
  "content_security_policy": "script-src 'self' https://api.trello.com; object-src 'self'",
  "author": "tinypowerups.com",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon.png",
      "32": "assets/icons/[email protected]",
      "48": "assets/icons/[email protected]",
      "128": "assets/icons/[email protected]"
    },
    "default_title": "Link Preserver for Trello",
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/b/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ]
}