Cite Creator

Constructs debate cites from meta tags or page info and copies to clipboard.

Что такое Cite Creator?

Cite Creator - это расширение Chrome, разработанное https://paperlessdebate.com, и его основная функция - "Constructs debate cites from meta tags or page info and copies to clipboard.".

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

screenshot

Скачать файл CRX расширения Cite Creator

Скачайте файлы расширений Cite Creator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Cite Creator produces cites for use in high school or college debate, using information in html tags or page info, and copies them to the clipboard. It has both automatic and manual modes, and outputs cites that work well with the Verbatim template (http://www.paperlessdebate.com)

Cite Creator works best on major news websites, and is unlikely to work on Lexis or in PDF's.                    

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

Название Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
Официальный URL https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Описание Constructs debate cites from meta tags or page info and copies to clipboard.
Размер файла 35.19 KB
Количество установок 20,000
Текущая Версия 1.1.1
Последнее Обновление 2016-03-25
Дата публикации 2016-03-25
Рейтинг 4.52/5 Всего 27 оценок
Разработчик https://paperlessdebate.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://paperlessdebate.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cite Creator",
    "version": "1.1.1",
    "description": "Constructs debate cites from meta tags or page info and copies to clipboard.",
    "icons": {
        "16": "icon.png",
        "48": "48.png",
        "128": "128.png"
    },
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "date.js",
                "mousetrap.min.js",
                "cite.js"
            ],
            "css": [
                "cite.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Cite Creator",
        "default_popup": "popup.html"
    },
    "permissions": [
        "clipboardWrite",
        "storage"
    ],
    "manifest_version": 2
}