NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
Τι είναι το NYTimes Free Cooking;
Το NYTimes Free Cooking είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rajesh64727, και η κύρια λειτουργία του είναι "Removes signup/ subscription popup from the NYTimes cooking website.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NYTimes Free Cooking
Λήψη αρχείων επέκτασης NYTimes Free Cooking σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
Επίσημο URL | https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom |
Περιγραφή | Removes signup/ subscription popup from the NYTimes cooking website. |
Μέγεθος Αρχείου | 25.98 KB |
Αριθμός Εγκαταστάσεων | 121 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2022-03-15 |
Ημερομηνία Δημοσίευσης | 2022-03-15 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | rajesh64727 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://rajesh64727.github.io |
Διεύθυνση URL της Σελίδας Βοήθειας | https://rajesh64727.github.io |
URL της Σελίδας Πολιτικής Απορρήτου | https://rajesh64727.github.io/privacy.html |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |