Behind the Paywall
Tired of paywalls? Let a machine dream up the articles you can't see.
Behind the Paywall क्या है?
Behind the Paywall mattvisco510 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tired of paywalls? Let a machine dream up the articles you can't see."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Behind the Paywall एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Behind the paywall is an experiment that uses artificial intelligence to dream up the article that is hidden behind the paywall. A text generating model tries to complete a given article using its headline and lead as its input. The model has been trained on thousands of old articles from The New York Times. With this training, it’s able to output a surprisingly convincing article using just the snippets of text not hidden by the paywall. 📝📝 Important note📝 📝 The plugin is only designed for articles at https://www.nytimes.com/ and will not necessarily work on all of them. You will need a bit of patience when generating the articles, it typically takes a few minutes the first time you run it.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jaifcgkedbjndhaegfngnfdhebgelngh |
आधिकारिक URL | https://chrome.google.com/webstore/detail/behind-the-paywall/jaifcgkedbjndhaegfngnfdhebgelngh |
विवरण | Tired of paywalls? Let a machine dream up the articles you can't see. |
फ़ाइल का आकार | 311 KB |
स्थापना संख्या | 1,000 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2021-06-01 |
प्रकाशन तिथि | 2021-05-22 |
रेटिंग | 1.17/5 कुल 6 रेटिंग्स |
डेवलपर | mattvisco510 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://andreasref.medium.com/behind-the-paywall-dcb2fce8722f |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Behind the Paywall", "version": "0.0.2", "manifest_version": 2, "description": "Tired of paywalls? Let a machine dream up the articles you can't see.", "icons": { "16": "icons\/glitch_16.png", "48": "icons\/glitch_48.png", "128": "icons\/glitch_128.png", "500": "icons\/glitch_500.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Behind the Paywall" }, "permissions": [ "*:\/\/*.nytimes.com\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.nytimes.com\/*" ], "css": [ "inject-style.css" ], "js": [ "hosted-model.js", "inject.js" ] } ] } |