Flight Rules Finder

Finds rules for Google Flights on Matrix - ITA

Cos'è Flight Rules Finder?

Flight Rules Finder è un'estensione di Chrome sviluppata da luxuryflightclub, e la sua funzione principale è "Finds rules for Google Flights on Matrix - ITA".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Flight Rules Finder

Scarica i file di estensione Flight Rules Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Flight Rules Finder Flight Rules Finder
ID odpilgcmandfflccbmfhcioninamdoba
URL Ufficiale https://chrome.google.com/webstore/detail/flight-rules-finder/odpilgcmandfflccbmfhcioninamdoba
Descrizione Finds rules for Google Flights on Matrix - ITA
Dimensione del File 30 KB
Conteggio Installazioni 88
Versione Corrente 1.12
Ultimo Aggiornamento 2021-04-05
Data di Pubblicazione 2021-04-04
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore luxuryflightclub
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://luxuryflightclub.com/
URL della Pagina della Politica sulla Privacy https://luxuryflightclub.com/privacy-policy
Lingue Supportate 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"
    }
}