NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
Co je NYTimes Free Cooking?
NYTimes Free Cooking je rozšíření Chrome vyvinuté rajesh64727, a jeho hlavní funkcí je „Removes signup/ subscription popup from the NYTimes cooking website.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření NYTimes Free Cooking
Stáhněte si soubory rozšíření NYTimes Free Cooking ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
Oficiální URL | https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom |
Popis | Removes signup/ subscription popup from the NYTimes cooking website. |
Velikost souboru | 25.98 KB |
Počet instalací | 121 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2022-03-15 |
Datum Vydání | 2022-03-15 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | rajesh64727 |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://rajesh64727.github.io |
URL Stránky Nápovědy | https://rajesh64727.github.io |
URL Stránky Zásad Ochrany Soukromí | https://rajesh64727.github.io/privacy.html |
Podporované Jazyky | 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" ] } ] } |