Spark

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

什么是Spark?

Spark是由https://chiarelliandrea.com开发的Chrome扩展程序,该扩展的主要功能是“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

下载Spark扩展crx文件

下载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"
    ]
}