Cite Creator

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

Cite Creatorとは何ですか?

Cite Creatorはhttps://paperlessdebate.comによって開発されたChromeの拡張機能で、その主な機能は「Constructs debate cites from meta tags or page info and copies to clipboard.」です。

拡張機能のスクリーンショット

screenshot

Cite Creator拡張機能のCRXファイルをダウンロード

Cite Creator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
公式URL https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
説明 Constructs debate cites from meta tags or page info and copies to clipboard.
ファイルサイズ 35.19 KB
インストール数 20,000
現在のバージョン 1.1.1
最終更新日 2016-03-25
公開日 2016-03-25
評価 4.52/5 合計 27 レビュー
開発者 https://paperlessdebate.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://paperlessdebate.com
対応言語 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
}