NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
NYTimes Free Cooking क्या है?
NYTimes Free Cooking rajesh64727 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes signup/ subscription popup from the NYTimes cooking website."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NYTimes Free Cooking एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |