Cite Creator

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

Was ist Cite Creator?

Cite Creator ist eine Chrome-Erweiterung, die von https://paperlessdebate.com entwickelt wurde, und ihr Hauptmerkmal ist "Constructs debate cites from meta tags or page info and copies to clipboard.".

Erweiterungsscreenshots

screenshot

Cite Creator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cite Creator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
Offizielle URL https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Beschreibung Constructs debate cites from meta tags or page info and copies to clipboard.
Dateigröße 35.19 KB
Installationsanzahl 20,000
Aktuelle Version 1.1.1
Letztes Update 2016-03-25
Veröffentlichungsdatum 2016-03-25
Bewertung 4.52/5 Insgesamt 27 Bewertungen
Entwickler https://paperlessdebate.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://paperlessdebate.com
Unterstützte Sprachen 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
}