NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
Co to jest NYTimes Free Cooking?
NYTimes Free Cooking to rozszerzenie Chrome opracowane przez rajesh64727, a jego główną funkcją jest „Removes signup/ subscription popup from the NYTimes cooking website.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia NYTimes Free Cooking
Pobierz pliki rozszerzeń NYTimes Free Cooking w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
Oficjalny URL | https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom |
Opis | Removes signup/ subscription popup from the NYTimes cooking website. |
Rozmiar pliku | 25.98 KB |
Liczba instalacji | 121 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2022-03-15 |
Data Publikacji | 2022-03-15 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | rajesh64727 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://rajesh64727.github.io |
Adres URL Strony Pomocy | https://rajesh64727.github.io |
Adres URL Strony Polityki Prywatności | https://rajesh64727.github.io/privacy.html |
Obsługiwane Języki | 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" ] } ] } |