papers-with-video

Show video explanations for research papers

Cos'è papers-with-video?

papers-with-video è un'estensione di Chrome sviluppata da amitness, e la sua funzione principale è "Show video explanations for research papers".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione papers-with-video

Scarica i file di estensione papers-with-video in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Add a video icon to the paper title on arxiv.org if a conference video exists for the paper.

The list of supported papers: http://bit.ly/supported-papers                    

Informazioni di Base sull'Estensione

Nome papers-with-video papers-with-video
ID aflnhgmklenfljibnfellgkmdpmmoekf
URL Ufficiale https://chromewebstore.google.com/detail/papers-with-video/aflnhgmklenfljibnfellgkmdpmmoekf
Descrizione Show video explanations for research papers
Dimensione del File 546 KB
Conteggio Installazioni 1,000
Versione Corrente 0.5.2
Ultimo Aggiornamento 2022-06-03
Data di Pubblicazione 2021-02-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore amitness
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://amitness.com/privacy/index.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "papers-with-video",
    "version": "0.5.2",
    "description": "Show video explanations for research papers",
    "author": "Amit Chaudhary ",
    "homepage_url": "https:\/\/github.com\/amitness\/papers-with-video",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/arxiv.org\/abs\/*",
                "http:\/\/arxiv.org\/abs\/*"
            ],
            "js": [
                "scripts\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/mapping.json"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "144": "images\/icon.png"
    },
    "offline_enabled": true
}