Cite Creator

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

Apa itu Cite Creator?

Cite Creator adalah ekstensi Chrome yang dikembangkan oleh https://paperlessdebate.com, dan fitur utamanya adalah "Constructs debate cites from meta tags or page info and copies to clipboard.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cite Creator

Unduh file ekstensi Cite Creator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
URL Resmi https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Deskripsi Constructs debate cites from meta tags or page info and copies to clipboard.
Ukuran File 35.19 KB
Jumlah Instalasi 20,000
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2016-03-25
Tanggal Publikasi 2016-03-25
Penilaian 4.52/5 Total 27 Penilaian
Pengembang https://paperlessdebate.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://paperlessdebate.com
Bahasa yang Didukung 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
}