NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
Vad är NYTimes Free Cooking?
NYTimes Free Cooking är en Chrome-tillägg utvecklad av rajesh64727, och dess huvudfunktion är "Removes signup/ subscription popup from the NYTimes cooking website.".
Tilläggsskärmbilder
Ladda ner NYTimes Free Cooking-förlängningens CRX-fil
Ladda ner NYTimes Free Cooking-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
Officiell webbadress | https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom |
Beskrivning | Removes signup/ subscription popup from the NYTimes cooking website. |
Filstorlek | 25.98 KB |
Antal Installationer | 121 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2022-03-15 |
Publiceringsdatum | 2022-03-15 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | rajesh64727 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://rajesh64727.github.io |
Hjälpsida URL | https://rajesh64727.github.io |
URL till Sekretesspolicy Sidan | https://rajesh64727.github.io/privacy.html |
Stödda Språk | 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" ] } ] } |