NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
Hvad er NYTimes Free Cooking?
NYTimes Free Cooking er en Chrome-udvidelse udviklet af rajesh64727, og dens hovedfunktion er "Removes signup/ subscription popup from the NYTimes cooking website.".
Udvidelsesskærmbilleder
Download NYTimes Free Cooking-udvidelses-CRX-fil
Download NYTimes Free Cooking-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
Officiel URL | https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom |
Beskrivelse | Removes signup/ subscription popup from the NYTimes cooking website. |
Filstørrelse | 25.98 KB |
Antal Installationer | 121 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2022-03-15 |
Udgivelsesdato | 2022-03-15 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | rajesh64727 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://rajesh64727.github.io |
Hjælpeside-URL | https://rajesh64727.github.io |
URL til Fortrolighedspolitik Side | https://rajesh64727.github.io/privacy.html |
Understøttede Sprog | 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" ] } ] } |