Sequence Prediction Tool
SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click.
什么是Sequence Prediction Tool?
Sequence Prediction Tool是由https://sequencepredictiontool.com开发的Chrome扩展程序,该扩展的主要功能是“SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click.”。
扩展截图
下载Sequence Prediction Tool扩展crx文件
下载Sequence Prediction Tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This tool is a trained recurrent neural network used in Chrome extension for English text sequence suggestions during the writing of text by the user. The intention is to simplify the writing of frequent phrases. This tool contributes to enhancing the everyday user experience of writing on the Internet by using a neural network for English word sequence autocomplete in the browser.
扩展基本信息
名称 | Sequence Prediction Tool |
ID | biblhlpmjanngadiholiloifmnmmfohk |
官方URL | https://chromewebstore.google.com/detail/sequence-prediction-tool/biblhlpmjanngadiholiloifmnmmfohk |
简介 | SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click. |
文件大小 | 335 KB |
安装次数 | 67 |
当前版本 | 2.7.0 |
更新时间 | 2020-08-01 |
上架时间 | 2020-07-01 |
开发者 | https://sequencepredictiontool.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
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" } } |