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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}