AUTOFORM
Automatically Make your Form
AUTOFORMとは何ですか?
AUTOFORMはdbswns97によって開発されたChromeの拡張機能で、その主な機能は「Automatically Make your Form」です。
拡張機能のスクリーンショット
AUTOFORM拡張機能のCRXファイルをダウンロード
AUTOFORM拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
유튜브 라이브에서 채팅을 할 때, 회사나 단체에서 권장하는 형식을 자동으로 만들어 줍니다.
채팅 창에 아무것도 입력되어 있지 않을 때만, 자동으로 형식을 만들어 줍니다.
사용 방법 :
1. 유튜브 라이브 사이트에 접속합니다.
2. 오른쪽 상단에서, AutoForm 앱을 클릭하고, 원하는 양식을 입력합니다.
Ex) [서울_B_홍길동]
3. 형식 제출 버튼을 누르면, 자동으로 형식을 만들기 시작합니다.
4. 중지하고 싶다면 중지 버튼을 누르세요.
-------------1.1 -------------
채팅 예약 기능 추가
-------------1.2-------------
이전에 사용했던 예약어 자동으로 입력되어 있도록 수정
예약된 채팅 메세지 전송 기능은 2 버전에 추가될 예정입니다.
-----------1.3------------
유튜브페이지에서만 작동하도록 수정 拡張機能の基本情報
| 名前 | |
| ID | jlioaoocklneefpocgbkjamahkkpcfpn |
| 公式URL | https://chromewebstore.google.com/detail/autoform/jlioaoocklneefpocgbkjamahkkpcfpn |
| 説明 | Automatically Make your Form |
| ファイルサイズ | 770 KB |
| インストール数 | 24 |
| 現在のバージョン | 1.3 |
| 最終更新日 | 2021-11-13 |
| 公開日 | 2021-08-05 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | dbswns97 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AUTOFORM",
"description": "Automatically Make your Form",
"version": "1.3",
"manifest_version": 3,
"permissions": [
"storage",
"activeTab",
"scripting",
"https:\/\/www.youtube.com\/**"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/logo16.png",
"32": "\/images\/logo32.png",
"48": "\/images\/logo48.png",
"128": "\/images\/logo128.png"
}
},
"icons": {
"16": "\/images\/logo16.png",
"32": "\/images\/logo32.png",
"48": "\/images\/logo48.png",
"128": "\/images\/logo128.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/**"
],
"all_frames": true,
"js": [
"popup.js"
],
"include_globs": [
"https:\/\/www.youtube.com\/**"
]
}
]
} | |