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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |