Sequence Prediction Tool

Sequence Prediction Tool

SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sequence Prediction Tool",
  "short_name": "SPT",
  "description": "SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click.",
  "version": "2.7.0",
  "author": "Jan Jakub Kubik",
  "icons": {
    "16": "images/icon_16_16.png",
    "48": "images/icon_48_48.png",
    "128": "images/icon_128_128.png"
  },
  "permissions": [
    "file://*",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://storage.googleapis.com/sequencepredictiontool/*; object-src 'self'",
  "background": {
    "scripts": [
      "external_modules/tf.js",
      "sub_word_tokenizer.js",
      "sequence_predictor.js",
      "communication.js",
      "data.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "file://*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "external_modules/jquery_min.js",
        "external_modules/jquery_ui.js",
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon_16_16.png",
    "default_title": "Sequence Prediction Tool"
  }
}