Cite Creator

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

Wat is Cite Creator?

Cite Creator is een Chrome-extensie ontwikkeld door https://paperlessdebate.com, en de belangrijkste functie is "Constructs debate cites from meta tags or page info and copies to clipboard.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cite Creator

Download Cite Creator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
Officiële URL https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Beschrijving Constructs debate cites from meta tags or page info and copies to clipboard.
Bestandsgrootte 35.19 KB
Aantal Installaties 20,000
Huidige Versie 1.1.1
Laatst Bijgewerkt 2016-03-25
Publicatiedatum 2016-03-25
Beoordeling 4.52/5 Totaal 27 Beoordelingen
Ontwikkelaar https://paperlessdebate.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://paperlessdebate.com
Ondersteunde Talen 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
}