Typer
Type in any input programatically.
Typerとは何ですか?
TyperはWinner Crespoによって開発されたChromeの拡張機能で、その主な機能は「Type in any input programatically.」です。
拡張機能のスクリーンショット
Typer拡張機能のCRXファイルをダウンロード
Typer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Generates random text and insert it in a typing speed (Configurable). 拡張機能の基本情報
| 名前 | |
| ID | bpmfajblmdikmahchnllakodjjjkpppp |
| 公式URL | https://chromewebstore.google.com/detail/typer/bpmfajblmdikmahchnllakodjjjkpppp |
| 説明 | Type in any input programatically. |
| ファイルサイズ | 23.99 KB |
| インストール数 | 83 |
| 現在のバージョン | 0.0.2 |
| 最終更新日 | 2019-06-22 |
| 公開日 | 2019-06-18 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Winner Crespo |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Typer",
"version": "0.0.2",
"description": "Type in any input programatically.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"contextMenus"
],
"icons": {
"16": ".\/assets\/logo-black-16x16.png",
"32": ".\/assets\/logo-black-32x32.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"lorem.js",
"contentScript.js",
"type.js"
]
}
],
"manifest_version": 2
} | |