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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } ] } |