Crossminds Papers with Video

Find research videos for AI research papers on arXiv

Was ist Crossminds Papers with Video?

Crossminds Papers with Video ist eine Chrome-Erweiterung, die von http://crossminds.ai entwickelt wurde, und ihr Hauptmerkmal ist "Find research videos for AI research papers on arXiv".

Erweiterungsscreenshots

screenshot
screenshot

Crossminds Papers with Video-Erweiterungs-CRX-Datei herunterladen

Laden Sie Crossminds Papers with Video-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        While browsing arXiv.org, Crossminds papers with video extension instantly help you find research videos and GitHub codes related to each paper. Powered by Crossminds.ai research video platform, this free extension currently covers over 23,850 videos and 149 conferences in artificial intelligence, machine learning, deep learning, computer vision, natural language processing (NLP), robotics and many other topics in the computer science domain. 

Any feedback or thoughts about this product are welcomed! Feel free to email us at [email protected].                    

Grundlegende Informationen zur Erweiterung

Name Crossminds Papers with Video Crossminds Papers with Video
ID eabiakehooihcmdbegmhaambcpmajkpd
Offizielle URL https://chrome.google.com/webstore/detail/crossminds-papers-with-vi/eabiakehooihcmdbegmhaambcpmajkpd
Beschreibung Find research videos for AI research papers on arXiv
Dateigröße 1023 KB
Installationsanzahl 787
Aktuelle Version 0.0.6
Letztes Update 2021-07-21
Veröffentlichungsdatum 2021-01-30
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://crossminds.ai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://crossminds.ai
Hilfeseite URL https://crossminds.ai/contact-us/
URL der Datenschutzrichtlinien-Seite https://crossminds.ai/policies/privacy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Crossminds Papers with Video",
    "version": "0.0.6",
    "action": {
        "default_icon": {
            "256": "images\/256.png",
            "128": "images\/128.png",
            "48": "images\/48.png",
            "16": "images\/16.png"
        },
        "default_title": "Crossminds Papers with Video"
    },
    "description": "Find research videos for AI research papers on arXiv",
    "author": "Crossminds.ai",
    "icons": {
        "256": "images\/256.png",
        "128": "images\/128.png",
        "48": "images\/48.png",
        "16": "images\/16.png"
    },
    "short_name": "cm-chrome-ext",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/arxiv.org\/search\/*",
                "http:\/\/arxiv.org\/search\/*",
                "https:\/\/arxiv.org\/abs\/*",
                "http:\/\/arxiv.org\/abs\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": []
}