Give me the F-ing PDF

Changes links to PDFs of journal articles to the PDF version (not HTML+PDF version with frames)

Что такое Give me the F-ing PDF?

Give me the F-ing PDF - это расширение Chrome, разработанное vsbuffalo, и его основная функция - "Changes links to PDFs of journal articles to the PDF version (not HTML+PDF version with frames)".

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

screenshot

Скачать файл CRX расширения Give me the F-ing PDF

Скачайте файлы расширений Give me the F-ing PDF в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Countless journal sites have adopted the same terrible web design, requiring an
extra click to get a PDF of an article. Nobody has time for that. This is a simple fix: a Google Chrome Extension that modifies the links to the PDFs such that they won't open up with frames.                    

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

Название Give me the F-ing PDF Give me the F-ing PDF
ID iekjpaipocoglamgpjoehfdemffdmami
Официальный URL https://chromewebstore.google.com/detail/give-me-the-f-ing-pdf/iekjpaipocoglamgpjoehfdemffdmami
Описание Changes links to PDFs of journal articles to the PDF version (not HTML+PDF version with frames)
Размер файла 32.33 KB
Количество установок 893
Текущая Версия 1.2
Последнее Обновление 2015-05-24
Дата публикации 2015-05-23
Рейтинг 4.53/5 Всего 15 оценок
Разработчик vsbuffalo
Тип оплаты free
Официальный сайт расширения https://github.com/vsbuffalo/gmtfPDF
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Give me the F-ing PDF",
    "author": "Vince Buffalo",
    "description": "Changes links to PDFs of journal articles to the PDF version (not HTML+PDF version with frames)",
    "manifest_version": 2,
    "version": "1.2",
    "permissions": [
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "gmtfpdf.js"
            ],
            "run_at": "document_end"
        }
    ]
}