Behind the Paywall

Tired of paywalls? Let a machine dream up the articles you can't see.

Behind the Paywall là gì?

Behind the Paywall là một tiện ích mở rộng Chrome được phát triển bởi mattvisco510, và tính năng chính của nó là "Tired of paywalls? Let a machine dream up the articles you can't see.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Behind the Paywall

Tải xuống các tệp mở rộng Behind the Paywall dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Behind the Paywall Behind the Paywall
ID jaifcgkedbjndhaegfngnfdhebgelngh
URL Chính Thức https://chrome.google.com/webstore/detail/behind-the-paywall/jaifcgkedbjndhaegfngnfdhebgelngh
Mô tả Tired of paywalls? Let a machine dream up the articles you can't see.
Kích Thước Tệp 311 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2021-06-01
Ngày Phát Hành 2021-05-22
Đánh Giá 1.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển mattvisco510
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://andreasref.medium.com/behind-the-paywall-dcb2fce8722f
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}