Behind the Paywall
Tired of paywalls? Let a machine dream up the articles you can't see.
Behind the Paywallとは何ですか?
Behind the Paywallはmattvisco510によって開発されたChromeの拡張機能で、その主な機能は「Tired of paywalls? Let a machine dream up the articles you can't see.」です。
拡張機能のスクリーンショット
Behind the Paywall拡張機能のCRXファイルをダウンロード
Behind the Paywall拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } ] } |