papers.labml.ai

🔎 View information about research papers linked from websites you visit.

Τι είναι το papers.labml.ai;

Το papers.labml.ai είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://labml.ai, και η κύρια λειτουργία του είναι "🔎 View information about research papers linked from websites you visit.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης papers.labml.ai

Λήψη αρχείων επέκτασης papers.labml.ai σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        This extension shows you the following details about research papers:
✨ 2-line summary
✨ Availability source code, videos, and discussions
✨ Popularity on Twitter
✨ Conferences

When you visit a website or a web app the extension icon (flask icon) in the browser will show a small badge that indicates the number of research papers found on that website. Click the extension icon to see the list of papers with summaries and other information. You can click on a paper to see the full details.

Optionally, the extension can also add an icon (📎) next to the links to research papers. You can click this icon to get the paper summary and other information.

This works on any website; for example, Google search, Twitter, blogs, tutorials, forums.

How it works:

This extension will extract the links to research papers from the websites you visit and send them to labml.ai servers to retrieve papers summaries. We need permission to "Allow this extension to read and change all your data on websites you visit: on all sites" to do this.

We have made the source code of this extension public for better transparency (and if anyone in the community wants to help us improve it 😊).

Github: https://github.com/labmlai/chrome-extension

Restricting access to sites:

If you go to "Manage Extensions"(chrome://extensions/) page on Chrome you will see our extension. Click on details to open the settings. Here, under "Site Access", Chrome lets you control what the extension has access to. By default it will be "On all sites". You can change this to "On click" (where the extension will get access only if you click the extension icon). You can also change this to "On specific sites" and add a list of domain names. Here's the documentation by Google (under Let extensions read and change site data): https://support.google.com/chrome_webstore/answer/2664769                    

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

Όνομα papers.labml.ai papers.labml.ai
ID agkeoekbbkpokfbpmmminnombikadbhb
Επίσημο URL https://chromewebstore.google.com/detail/paperslabmlai/agkeoekbbkpokfbpmmminnombikadbhb
Περιγραφή 🔎 View information about research papers linked from websites you visit.
Μέγεθος Αρχείου 1.47 MB
Αριθμός Εγκαταστάσεων 2,414
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2022-08-08
Ημερομηνία Δημοσίευσης 2022-01-19
Αξιολόγηση 4.69/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής https://labml.ai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://twitter.com/labmlai
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/labmlai
URL της Σελίδας Πολιτικής Απορρήτου https://labml.ai/privacy.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "papers.labml.ai",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "version": "1.1.2",
    "description": "\ud83d\udd0e  View information about research papers linked from websites you visit.",
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_ui": {
        "page": "html\/options.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "scripting",
        "webNavigation",
        "storage"
    ],
    "action": {
        "default_title": "Papers",
        "default_icon": "assets\/icon48.png",
        "default_popup": "html\/popup.html"
    },
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/font-awesome\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}