FlyOnTime
A Chrome extension that helps you find the best time to book flights.
FlyOnTimeとは何ですか?
FlyOnTimeはDerek Fultonによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that helps you find the best time to book flights.」です。
拡張機能のスクリーンショット
FlyOnTime拡張機能のCRXファイルをダウンロード
FlyOnTime拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This item shows users the likelihood that a flight will be delayed based on historical data 拡張機能の基本情報
| 名前 | |
| ID | mjhocoppejcanpaojgcfbojaebiegjkp |
| 公式URL | https://chromewebstore.google.com/detail/flyontime/mjhocoppejcanpaojgcfbojaebiegjkp |
| 説明 | A Chrome extension that helps you find the best time to book flights. |
| ファイルサイズ | 571 KB |
| インストール数 | 45 |
| 現在のバージョン | 0.0.12 |
| 最終更新日 | 2024-03-02 |
| 公開日 | 2023-10-20 |
| 開発者 | Derek Fulton |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "FlyOnTime",
"description": "A Chrome extension that helps you find the best time to book flights.",
"version": "0.0.12",
"icons": {
"16": "logo\/logo-16.png",
"48": "logo\/logo-48.png",
"128": "logo\/logo-128.png"
},
"options_page": "settings\/settings.html",
"action": {
"default_title": "FlyOnTime",
"default_popup": "popup\/popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:google.com\/travel\/flights\/*"
],
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"js": [
"d3.v7.min.js",
"foreground.js"
],
"css": [
"foreground.css"
],
"matches": [
"https:\/\/www.google.com\/travel\/flights\/*"
]
}
]
} | |