Sci-Hub X Now!

Free access to academic papers with just a single click via sci-hub!

Τι είναι το Sci-Hub X Now!;

Το Sci-Hub X Now! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gchenfc.developer, και η κύρια λειτουργία του είναι "Free access to academic papers with just a single click via sci-hub!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Sci-Hub X Now!

Λήψη αρχείων επέκτασης Sci-Hub X Now! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Opens the sci-hub page for the article you want to read.
	
When on a publisher's page for an academic article, click the sci-hub "bird" icon to download the pdf or go to the corresponding sci-hub page (configure behavior in "options").
Works by searching for the doi anywhere on the page and then navigating to the corresponding sci-hub url.

Allows you to change the sci-hub domain in "preferences"/"options" in case the sci-hub mirror changes.  The extension will automatically check if the server is down each time you click the extension and direct you to the options page to change the domain if so.

Note: This is a continuation of https://addons.mozilla.org/en-US/firefox/addon/sci-hub-now/ by 0x01h but he no longer maintains it. I have made minor modifications and will continue maintaining it until at least 2024.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Sci-Hub X Now! Sci-Hub X Now!
ID gmmnidkpkgiohfdoenhpghbilmeeagjj
Επίσημο URL https://chrome.google.com/webstore/detail/gmmnidkpkgiohfdoenhpghbilmeeagjj
Περιγραφή Free access to academic papers with just a single click via sci-hub!
Μέγεθος Αρχείου 57.1 KB
Αριθμός Εγκαταστάσεων 208,615
Τρέχουσα Έκδοση 0.2.2
Τελευταία Ενημέρωση 2023-02-07
Ημερομηνία Δημοσίευσης 2020-10-12
Αξιολόγηση 4.71/5 Συνολικά 83 Αξιολογήσεις
Προγραμματιστής gchenfc.developer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/gchenfc/sci-hub-now
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/gchenfc/sci-hub-now
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sci-Hub X Now!",
    "short_name": "sci-hub-x-now",
    "version": "0.2.2",
    "author": "Gerry Chen and Or\u00e7un \u00d6zdemir and Lucas Sterzinger",
    "homepage_url": "https:\/\/github.com\/gchenfc\/sci-hub-now",
    "description": "Free access to academic papers with just a single click via sci-hub!",
    "icons": {
        "48": "icons\/48x48.png",
        "96": "icons\/96x96.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "48": "icons\/48x48.png",
            "96": "icons\/96x96.png"
        },
        "default_title": "Sci-Hub X Now!",
        "theme_icons": [
            {
                "light": "icons\/48x48_white.png",
                "dark": "icons\/48x48.png",
                "size": 48
            },
            {
                "light": "icons\/96x96_white.png",
                "dark": "icons\/96x96.png",
                "size": 96
            }
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+A",
                "mac": "Alt+A",
                "chromeos": "Alt+A",
                "linux": "Alt+A"
            }
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "downloads",
        "https:\/\/doi.crossref.org\/servlet\/query*",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js",
            "helper_js\/doi-metadata-scraper.js",
            "helper_js\/pdf-link-scraper.js"
        ]
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    }
}