NYTimes Free Cooking

Removes signup/ subscription popup from the NYTimes cooking website.

Was ist NYTimes Free Cooking?

NYTimes Free Cooking ist eine Chrome-Erweiterung, die von rajesh64727 entwickelt wurde, und ihr Hauptmerkmal ist "Removes signup/ subscription popup from the NYTimes cooking website.".

Erweiterungsscreenshots

screenshot
screenshot

NYTimes Free Cooking-Erweiterungs-CRX-Datei herunterladen

Laden Sie NYTimes Free Cooking-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name NYTimes Free Cooking NYTimes Free Cooking
ID dfcgnppjemgegjipdnfbhekjnkhkcpom
Offizielle URL https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom
Beschreibung Removes signup/ subscription popup from the NYTimes cooking website.
Dateigröße 25.98 KB
Installationsanzahl 121
Aktuelle Version 1.0.0
Letztes Update 2022-03-15
Veröffentlichungsdatum 2022-03-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler rajesh64727
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://rajesh64727.github.io
Hilfeseite URL https://rajesh64727.github.io
URL der Datenschutzrichtlinien-Seite https://rajesh64727.github.io/privacy.html
Unterstützte Sprachen 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"
            ]
        }
    ]
}