Behind the Paywall

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

Что такое Behind the Paywall?

Behind the Paywall - это расширение Chrome, разработанное mattvisco510, и его основная функция - "Tired of paywalls? Let a machine dream up the articles you can't see.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Behind the Paywall

Скачайте файлы расширений 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.                    

Основная информация о расширении

Название Behind the Paywall Behind the Paywall
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"
            ]
        }
    ]
}