Cite Creator

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

Cos'è Cite Creator?

Cite Creator è un'estensione di Chrome sviluppata da https://paperlessdebate.com, e la sua funzione principale è "Constructs debate cites from meta tags or page info and copies to clipboard.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cite Creator

Scarica i file di estensione Cite Creator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
URL Ufficiale https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Descrizione Constructs debate cites from meta tags or page info and copies to clipboard.
Dimensione del File 35.19 KB
Conteggio Installazioni 20,000
Versione Corrente 1.1.1
Ultimo Aggiornamento 2016-03-25
Data di Pubblicazione 2016-03-25
Valutazione 4.52/5 Totale 27 Valutazioni
Sviluppatore https://paperlessdebate.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://paperlessdebate.com
Lingue Supportate 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
}