Spark

Find open version of articles as you browse, get access to formatted citations, and explore works cited by your favourite authors.

Что такое Spark?

Spark - это расширение Chrome, разработанное https://chiarelliandrea.com, и его основная функция - "Find open version of articles as you browse, get access to formatted citations, and explore works cited by your favourite authors.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Spark

Скачайте файлы расширений Spark в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Spark aims to be a helping hand as you browse academic content such as articles, books and preprints. It helps you do three things: Cite, Read and Explore.
- Cite: Spark lets you pick from a range of eight leading citation styles and, at the click of a button, gives you a formatted citation that you can paste wherever you like. This is a lifesaver when you are short on time and just need a tidy-looking reference!
- Read: Spark works behind the scenes to identify open access or otherwise free versions of the academic content you are viewing. If it finds a match, you will be able to go straight to a freely accessible copy (for example, if what you are trying to read is behind a paywall).
- Explore: Spark is also able to see the scholarly items cited by the academic content you browse. By clicking on the ‘Explore’ button, you will be able to browse these on your screen and open them easily. This is a great feature if you are looking for inspiration or feel like exploring a topic.

Why use Spark?
- Because it’s easy: Spark is very straightforward to use and, if you are happy with the default settings, there is virtually no learning curve! The above description is all the tutorial you need.
- Because it’s open: Spark is open source and available to download, edit and reuse on GitHub – you can fully understand how it works thanks to extensive comments. 
- Because it’s free: Spark was built as a personal project. It is free, customisable and just aims to make your life easier.

How does Spark work?
As you browse the internet, Spark looks for DOIs (or Digital Object Identifiers) either displayed on the page or in its HTML code. These are used to query four databases via their publicly accessible APIs, and you are simply presented with the results of this process. Spark works thanks to the fantastic data collection and curation efforts of various organisations and initiatives: CORE, Crosscite, OpenCitations and Unpaywall. These guys are the real MVP.

Just so you know, any of the information gathered by Spark stays in your browser. The email address and the API key in the Options menu are required to manage API requests and are only used for these purposes. No other information is gathered nor sent to third parties.                    

Основная информация о расширении

Название Spark Spark
ID dfcldhbleocbnmbmnbgnljaeficpbkck
Официальный URL https://chromewebstore.google.com/detail/spark/dfcldhbleocbnmbmnbgnljaeficpbkck
Описание Find open version of articles as you browse, get access to formatted citations, and explore works cited by your favourite authors.
Размер файла 222 KB
Количество установок 145
Текущая Версия 0.0.5
Последнее Обновление 2021-11-28
Дата публикации 2021-09-02
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://chiarelliandrea.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://chiarelliandrea.com/portfolio/spark-extension-open-access/
URL страницы помощи https://chiarelliandrea.com/2021/08/15/spark-frequently-asked-questions-faq/
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Spark",
    "description": "Find open version of articles as you browse, get access to formatted citations, and explore works cited by your favourite authors.",
    "version": "0.0.5",
    "options_page": "options.html",
    "action": {
        "default_icon": "assets\/icon\/icon.png",
        "default_title": "Spark",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon\/icon16.png",
        "48": "assets\/icon\/icon48.png",
        "128": "assets\/icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery-3.1.1.min.js",
                "background.js",
                "contentScript.js"
            ],
            "css": [
                "css\/buttonStyle.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "permissions": [
        "storage"
    ]
}