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
电子邮箱 [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
}