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
官方網址 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
}