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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SPT is a Google Chrome extension for text sequence suggestions. Suggested text can be chosen by TAB, or mouse click."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sequence Prediction Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |