NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
Wat is NYTimes Free Cooking?
NYTimes Free Cooking is een Chrome-extensie ontwikkeld door rajesh64727, en de belangrijkste functie is "Removes signup/ subscription popup from the NYTimes cooking website.".
Extensie Screenshots
Download het CRX-bestand van de extensie NYTimes Free Cooking
Download NYTimes Free Cooking-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
Officiële URL | https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom |
Beschrijving | Removes signup/ subscription popup from the NYTimes cooking website. |
Bestandsgrootte | 25.98 KB |
Aantal Installaties | 121 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2022-03-15 |
Publicatiedatum | 2022-03-15 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | rajesh64727 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://rajesh64727.github.io |
Help Pagina-URL | https://rajesh64727.github.io |
URL van de Privacybeleid Pagina | https://rajesh64727.github.io/privacy.html |
Ondersteunde Talen | 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" ] } ] } |