Flight Rules Finder

Finds rules for Google Flights on Matrix - ITA

Flight Rules Finder क्या है?

Flight Rules Finder luxuryflightclub द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Finds rules for Google Flights on Matrix - ITA"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Flight Rules Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Flight Rules Finder Flight Rules Finder
ID odpilgcmandfflccbmfhcioninamdoba
आधिकारिक URL https://chrome.google.com/webstore/detail/flight-rules-finder/odpilgcmandfflccbmfhcioninamdoba
विवरण Finds rules for Google Flights on Matrix - ITA
फ़ाइल का आकार 30 KB
स्थापना संख्या 88
वर्तमान संस्करण 1.12
अंतिम अपडेट 2021-04-05
प्रकाशन तिथि 2021-04-04
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर luxuryflightclub
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://luxuryflightclub.com/
गोपनीयता नीति पृष्ठ URL https://luxuryflightclub.com/privacy-policy
समर्थित भाषाएँ 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"
    }
}