Custom Fields for Google calendar
Create custom fields in Google Calender.
Custom Fields for Google calendarとは何ですか?
Custom Fields for Google calendarはTabgrafによって開発されたChromeの拡張機能で、その主な機能は「Create custom fields in Google Calender.」です。
拡張機能のスクリーンショット
Custom Fields for Google calendar拡張機能のCRXファイルをダウンロード
Custom Fields for Google calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Use the Custom Fields add-on for Google Calendar to create and manage custom fields that does not exist in the regular Calendar interface. Event organiser can add a variety of customised fields including Dropdown, Date Picker, Color Picker, Checkbox, Multiple Choice, Long/Short Text. Only those users who have edit access can change the custom fields. A simple User Interface to see and edit the fields. Admin can quickly add or remove a field from the calendar.
拡張機能の基本情報
名前 | Custom Fields for Google calendar |
ID | fgomfahnlnkadfcbnlbfddbdfhckbamm |
公式URL | https://chromewebstore.google.com/detail/custom-fields-for-google/fgomfahnlnkadfcbnlbfddbdfhckbamm |
説明 | Create custom fields in Google Calender. |
ファイルサイズ | 214 KB |
インストール数 | 303 |
現在のバージョン | 2.1 |
最終更新日 | 2024-03-04 |
公開日 | 2023-05-29 |
評価 | 2.36/5 合計 11 レビュー |
開発者 | Tabgraf |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://tabgraf.com/products/custom-fields-for-google-calender |
プライバシーポリシーページのURL | https://tabgraf.com/products/custom-fields-for-google-calender/privacy-policy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Custom Fields for Google calendar", "description": "Create custom fields in Google Calender.", "version": "2.1", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/u\/0\/r\/eventedit\/*", "https:\/\/calendar.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/u\/0\/r", "https:\/\/calendar.google.com\/calendar\/u\/0\/r\/eventedit?state=%5Bnull%2Cnull%2Cnull%2Cnull%2C%5B13%5D%5D" ], "js": [ "common\/env.js", "lib\/jquery.js", "lib\/pie-chart.js", "common\/utils\/utilities.js", "js\/auth.js", "js\/main.js", "js\/editor.js", "js\/viewer.js", "js\/payments\/subscription-info.js", "js\/payments\/subscription-expired.js", "js\/payments\/continue-without-saving.js" ], "css": [ "css\/main.css", "css\/editor.css", "css\/viewer.css", "css\/input-fields.css" ] } ], "action": { "default_icon": "img\/icon.png", "default_popup": "pages\/popup.html" }, "icons": { "48": "img\/icon.png", "128": "img\/icon.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/calender.google.com\/*" ], "web_accessible_resources": [ { "resources": [ "img\/logo.png", "img\/icon.png", "img\/account.png", "img\/bookmark.png", "img\/icon.png", "img\/icon.png", "img\/btn-light.png", "img\/btn-dark.png", "img\/info.png", "img\/survey.png", "img\/feedbackimg.png", "img\/logo-white.svg" ], "matches": [ "https:\/\/calendar.google.com\/*" ] } ] } |