Cite Creator

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

Co to jest Cite Creator?

Cite Creator to rozszerzenie Chrome opracowane przez https://paperlessdebate.com, a jego główną funkcją jest „Constructs debate cites from meta tags or page info and copies to clipboard.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Cite Creator

Pobierz pliki rozszerzeń Cite Creator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
Oficjalny URL https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Opis Constructs debate cites from meta tags or page info and copies to clipboard.
Rozmiar pliku 35.19 KB
Liczba instalacji 20,000
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2016-03-25
Data Publikacji 2016-03-25
Ocena 4.52/5 Łącznie 27 Oceny
Deweloper https://paperlessdebate.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://paperlessdebate.com
Obsługiwane Języki 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
}