Shorten & Translate by Text United

Shorten & Translate by Text United

Extract the key points in any article you read and translate them in an instant!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shorten & Translate by Text United",
  "description": "Extract the key points in any article you read and translate them in an instant!",
  "version": "3.0.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Shorten & Translate text on this page now!"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "modal.css",
        "nouislider.min.css"
      ],
      "js": [
        "bundle.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "icon.png",
    "Lato-Regular.eot",
    "Lato-Regular.woff2",
    "Lato-Regular.woff",
    "Lato-Regular.ttf"
  ]
}