Cite Creator

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

What is Cite Creator?

Cite Creator is a Chrome extension developed by https://paperlessdebate.com, and its main feature is "Constructs debate cites from meta tags or page info and copies to clipboard.".

Extension Screenshots

screenshot

Download Cite Creator Extension CRX File

Download Cite Creator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
Official URL https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Description Constructs debate cites from meta tags or page info and copies to clipboard.
File Size 35.19 KB
Installation Count 20,000
Current Version 1.1.1
Last Updated 2016-03-25
Publish Date 2016-03-25
Rating 4.52/5 Total 27 Ratings
Developer https://paperlessdebate.com
Email [email protected]
Payment Type free
Extension Website http://paperlessdebate.com
Supported Languages 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
}