Tot | Convert any text into task

Tot | Convert any text into task

You can convert any text into task

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tot | Convert any text into task",
  "version": "2.0.2",
  "description": "You can convert any text into task",
  "browser_action": {
    "default_icon": {
      "19": "/images/logo.png",
      "38": "/images/logo.png"
    },
    "default_title": "Tot"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/b/*",
        "https://api.gumroad.com/*"
      ],
      "js": [
        "vendor/jquery.min.js",
        "js/main.js",
        "js/home.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://assets.gumroad.com/assets/gumroad-embed-05a8f9c1f958917b9d6a84fd31b3204fcd2a2f645f4f97f9763f067919726d09.js; object-src 'self' ",
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "web_accessible_resources": [
    "/images/Jcrop.gif",
    "/images/pixel.png",
    "views/*"
  ],
  "commands": {
    "open-tot": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "TOT"
    }
  },
  "icons": {
    "16": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "images/logo.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "tabs"
  ]
}