LiteCite - Quotation and Auto Citation

Your hidden super power. Autocite and quote at once! 9000+ citation styles and export to multiple formats.

Vad är LiteCite - Quotation and Auto Citation?

LiteCite - Quotation and Auto Citation är en Chrome-tillägg utvecklad av Jefferson Mei, och dess huvudfunktion är "Your hidden super power. Autocite and quote at once! 9000+ citation styles and export to multiple formats.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner LiteCite - Quotation and Auto Citation-förlängningens CRX-fil

Ladda ner LiteCite - Quotation and Auto Citation-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Research and citations done together so you don't need to go back and complete citations when you finish your paper!

Research + Citation made EASY
- High quality autocites with formattable quotations
- Autocites and optional quotes saved together
- 9000+ citation styles including MLA, Harvard, Chicago, and APA
- Supports DOI, PMID, and ISBN
- Export or copy bibliographies to Google Docs, Word, Zotero, Mendeley and EndNote using Docx, CSL-JSON, Bibtex, or RIS
- Create multiple projects
- Quick-cite using ctrl+c+shift or cmd+c+shift
- Easy to access, toggleable sidebar containing your research
- No sign up or external websites necessary!
- Made with love!

Hi, my name is Jefferson. I made this extension as an experiment to see if I could make high school debate easier. What started as a simple experiment has ballooned into a 2 year commitment and a wonderful chrome extension.  If you find this extension useful, feel free to leave a review/share a link so others can enjoy my project! ;)

Changelog
0.1.7.5
- Added keyboard shortcut for sidebar (use Alt+S)
- Added setting for paragraph spacing within quoted text
- Reduced sidebar memory usage
- Squashed some bugs
0.1.5.5
- Added automatically organized research export option!
- First published version!                    

Grundläggande Information om Tillägg

Namn LiteCite - Quotation and Auto Citation LiteCite - Quotation and Auto Citation
ID fgfmogmmpgfolmebmimlnjbmhecinngd
Officiell webbadress https://chromewebstore.google.com/detail/litecite-quotation-and-au/fgfmogmmpgfolmebmimlnjbmhecinngd
Beskrivning Your hidden super power. Autocite and quote at once! 9000+ citation styles and export to multiple formats.
Filstorlek 11.75 MB
Antal Installationer 1,095
Aktuell Version 0.1.7.5
Senast Uppdaterad 2020-08-27
Publiceringsdatum 2020-08-15
Betyg 5.00/5 Totalt 8 Betyg
Utvecklare Jefferson Mei
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LiteCite - Quotation and Auto Citation",
    "short_name": "LiteCite",
    "version": "0.1.7.5",
    "version_name": "0.1.7.5",
    "author": "Jefferson Mei",
    "description": " Your hidden super power. Autocite and quote at once! 9000+ citation styles and export to multiple formats.",
    "icons": {
        "128": "icons\/card_compiler.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1-dist\/jquery-3.3.1.min.js",
                "vendor\/clipboard-polyfill\/clipboard-polyfill.js",
                "vendor\/keypress-2.1.5-dist\/keypress-2.1.5.min.js",
                "vendor\/sugar\/sugar-custom.min.js",
                "vendor\/pdfjs\/pdf.js",
                "vendor\/pdfjs\/pdf.worker.js",
                "vendor\/namecase-master\/namecase.js",
                "vendor\/to-title-case\/to-title-case.js",
                "util\/util.js",
                "inject\/inject.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "vendor\/html-docx\/html-docx.js",
            "util\/util.js",
            "background\/background.js",
            "background\/text_processor.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "inject\/sidebar_toggle.html",
        "inject\/sidebar_toggle.js",
        "inject\/sidebar.html",
        "inject\/sidebar.css",
        "inject\/sidebar.js",
        "inject\/inject.html",
        "inject\/inject_input.html",
        "inject\/inject_input.js",
        "vendor\/jquery-3.3.1-dist\/jquery-3.3.1.min.js",
        "vendor\/clipboard-polyfill\/clipboard-polyfill.js",
        "vendor\/keypress-2.1.5-dist\/keypress-2.1.5.min.js",
        "vendor\/list\/list.min.js",
        "vendor\/sugar\/sugar-custom.min.js",
        "vendor\/pdfjs\/pdf.js",
        "vendor\/pdfjs\/pdf.worker.js",
        "vendor\/list\/list.min.js",
        "vendor\/elasticlunr\/elasticlunr.min.js",
        "vendor\/styles-master\/*",
        "util\/util.js"
    ],
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "activeTab",
        "storage",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "icons\/card_compiler.png",
        "default_title": "LiteCite",
        "default_popup": "popup\/popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}