Tanjo web clipper

Tanjo web clipper

Use the Tanjo web clipper to save articles, videos and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tanjo web clipper",
  "short_name": "Tanjo clipper",
  "version": "0.9.0",
  "description": "Use the Tanjo web clipper to save articles, videos and more.",
  "author": "Szl.it",
  "icons": {
    "16": "common/icon16.png",
    "32": "common/icon32.png",
    "48": "common/icon48.png",
    "128": "common/icon128.png"
  },
  "browser_action": {
    "default_icon": "common/icon128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+T"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://tanjo.ai/*"
      ],
      "js": [
        "ui-bridge.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": []
  },
  "offline_enabled": false,
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "bindings.js"
    ],
    "persistent": false
  }
}