Cite Creator

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

ما هو Cite Creator؟

Cite Creator هو إضافة Chrome تم تطويرها بواسطة https://paperlessdebate.com، والميزة الرئيسية لها هي "Constructs debate cites from meta tags or page info and copies to clipboard.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Cite Creator

قم بتنزيل ملفات الامتداد Cite Creator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
}