NYTimes Free Cooking

Removes signup/ subscription popup from the NYTimes cooking website.

Cos'è NYTimes Free Cooking?

NYTimes Free Cooking è un'estensione di Chrome sviluppata da rajesh64727, e la sua funzione principale è "Removes signup/ subscription popup from the NYTimes cooking website.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione NYTimes Free Cooking

Scarica i file di estensione NYTimes Free Cooking 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

                        It removes the popup so that you can access the recipes without any disturbance.

Code file is simple ( a few lines of CSS update code in JS ) and if you want to improve it, source code is available at 
https://github.com/rajesh64727/BrowserExtensions/tree/master/NYTimesCooking                    

Informazioni di Base sull'Estensione

Nome NYTimes Free Cooking NYTimes Free Cooking
ID dfcgnppjemgegjipdnfbhekjnkhkcpom
URL Ufficiale https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom
Descrizione Removes signup/ subscription popup from the NYTimes cooking website.
Dimensione del File 25.98 KB
Conteggio Installazioni 121
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-03-15
Data di Pubblicazione 2022-03-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore rajesh64727
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://rajesh64727.github.io
URL della Pagina di Aiuto https://rajesh64727.github.io
URL della Pagina della Politica sulla Privacy https://rajesh64727.github.io/privacy.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NYTimes Free Cooking",
    "version": "1.0.0",
    "description": "Removes signup\/ subscription popup from the NYTimes cooking website.",
    "icons": {
        "128": "images\/nyc_icon128.png",
        "48": "images\/nyc_icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cooking.nytimes.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}