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 |
| 官方網址 | 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 |
| 電子郵箱 | [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
} | |