Sequence Prediction Tool
SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click.
Qu'est-ce que Sequence Prediction Tool ?
Sequence Prediction Tool est une extension Chrome développée par https://sequencepredictiontool.com, et sa fonction principale est "SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sequence Prediction Tool
Téléchargez les fichiers d'extension Sequence Prediction Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Sequence Prediction Tool |
ID | biblhlpmjanngadiholiloifmnmmfohk |
URL Officiel | https://chromewebstore.google.com/detail/sequence-prediction-tool/biblhlpmjanngadiholiloifmnmmfohk |
Description | SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click. |
Taille du Fichier | 335 KB |
Nombre d'Installations | 67 |
Version Actuelle | 2.7.0 |
Dernière Mise à Jour | 2020-08-01 |
Date de Publication | 2020-07-01 |
Développeur | https://sequencepredictiontool.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |