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
官方網址 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"
    ]
}