Cite Creator

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

Cite Creator là gì?

Cite Creator là một tiện ích mở rộng Chrome được phát triển bởi https://paperlessdebate.com, và tính năng chính của nó là "Constructs debate cites from meta tags or page info and copies to clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cite Creator

Tải xuống các tệp mở rộng Cite Creator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cite Creator Cite Creator
ID jampigcbgngjedogaoglhpeckidccodi
URL Chính Thức https://chromewebstore.google.com/detail/cite-creator/jampigcbgngjedogaoglhpeckidccodi
Mô tả Constructs debate cites from meta tags or page info and copies to clipboard.
Kích Thước Tệp 35.19 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2016-03-25
Ngày Phát Hành 2016-03-25
Đánh Giá 4.52/5 Tổng số 27 Đánh Giá
Nhà Phát Triển https://paperlessdebate.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://paperlessdebate.com
Ngôn Ngữ Được Hỗ Trợ 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
}