Flight Rules Finder

Finds rules for Google Flights on Matrix - ITA

Flight Rules Finder là gì?

Flight Rules Finder là một tiện ích mở rộng Chrome được phát triển bởi luxuryflightclub, và tính năng chính của nó là "Finds rules for Google Flights on Matrix - ITA".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Flight Rules Finder

Tải xuống các tệp mở rộng Flight Rules Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This is a tool I use for the Luxury Flight Club. It will copy your Google Flights search into a Matrix search. After that, you have to click through yourself to find the rules.

How this extension works:

• Use Google Flights and select your departing flight and returning flight (or just 1 flight if you want to search an one-way itinerary)
• A popup in the top right will appear
• Click on ‘Search the Matrix’
• A new tab will open, and the converter will automatically fill your search data in the Matrix

It will copy the following search settings:

• Your departing airport
• Your returning airport
• One-way or roundtrip
• It works with all currencies
• It works with all flight classes


Note: the Luxury Flight Club is not affiliated with Google Flights or ITA Matrix.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Flight Rules Finder Flight Rules Finder
ID odpilgcmandfflccbmfhcioninamdoba
URL Chính Thức https://chrome.google.com/webstore/detail/flight-rules-finder/odpilgcmandfflccbmfhcioninamdoba
Mô tả Finds rules for Google Flights on Matrix - ITA
Kích Thước Tệp 30 KB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 1.12
Cập Nhật Lần Cuối 2021-04-05
Ngày Phát Hành 2021-04-04
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển luxuryflightclub
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://luxuryflightclub.com/
URL Trang Chính Sách Bảo Mật https://luxuryflightclub.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flight Rules Finder",
    "version": "1.12",
    "description": "Finds rules for Google Flights on Matrix - ITA",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/matrix.itasoftware.com\/*",
        "https:\/\/www.google.com\/*",
        "https:\/\/www.google.co.uk\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/flights*",
                "https:\/\/www.google.com\/travel\/flights*",
                "https:\/\/www.google.co.uk\/flights*",
                "https:\/\/www.google.co.uk\/travel\/flights*"
            ],
            "css": [
                "src\/roboto.css",
                "src\/style.css"
            ],
            "js": [
                "src\/libs\/moment.min.js",
                "src\/utils.js",
                "src\/google-flights.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            ".\/src\/utils.js",
            ".\/src\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/**\/*.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": ".\/images\/icons\/icon.png",
            "48": ".\/images\/icons\/icon.png"
        }
    },
    "icons": {
        "16": ".\/images\/icons\/icon.png",
        "48": ".\/images\/icons\/icon.png",
        "128": ".\/images\/icons\/icon.png"
    }
}