NY Times Articles
The New York Times Articles full access. It is a 'Proof of Concept' work.
NY Times Articles क्या है?
NY Times Articles rajesh64727 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The New York Times Articles full access. It is a 'Proof of Concept' work."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NY Times Articles एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This allows user to read full article without registering to the New York Times website. There is no intent to harm anybody or the News site. In case of any copyright or legal issue please let me know before. I support free press, peace. + Also try the NYT cooking section extension on https://chrome.google.com/webstore/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom Updates: +April 1, 2022 - updated to Chrome manifest 3 =============================================================== If you are a developer and want to improve it ( or your extension) here is the source code path https://github.com/rajesh64727/BrowserExtensions/tree/master/NYTimesChromeExtn ===============================================================
एक्सटेंशन की मूल जानकारी
नाम | NY Times Articles |
ID | joojgneaeojkmbijpheacjlpfbahhldc |
आधिकारिक URL | https://chromewebstore.google.com/detail/ny-times-articles/joojgneaeojkmbijpheacjlpfbahhldc |
विवरण | The New York Times Articles full access. It is a 'Proof of Concept' work. |
फ़ाइल का आकार | 31.09 KB |
स्थापना संख्या | 4,173 |
वर्तमान संस्करण | 1.2.0 |
अंतिम अपडेट | 2022-04-02 |
प्रकाशन तिथि | 2020-08-13 |
रेटिंग | 4.43/5 कुल 46 रेटिंग्स |
डेवलपर | rajesh64727 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://rajesh64727.github.io |
गोपनीयता नीति पृष्ठ URL | https://rajesh64727.github.io/privacy.html |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NY Times Articles", "version": "1.2.0", "description": "The New York Times Articles full access. It is a 'Proof of Concept' work.", "action": { "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "icons": { "128": "images\/icon128.png", "64": "images\/icon64.png", "48": "images\/icon48.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/*" ], "js": [ "content.js" ] } ] } |