GroundAI
Read ArXiv papers in html
Co to jest GroundAI?
GroundAI to rozszerzenie Chrome opracowane przez https://groundai.com, a jego główną funkcją jest „Read ArXiv papers in html”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GroundAI
Pobierz pliki rozszerzeń GroundAI w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Click in the GroundAI icon when you're in an ArXiv paper page, and it'll automatically open the GroundAI HTML version.
Podstawowe informacje o rozszerzeniu
Nazwa | GroundAI |
ID | clmfghaigoglldpeccpmabboajajjhfp |
Oficjalny URL | https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp |
Opis | Read ArXiv papers in html |
Rozmiar pliku | 42.6 KB |
Liczba instalacji | 35 |
Aktualna Wersja | 0.0.0.2 |
Ostatnia Aktualizacja | 2018-05-01 |
Data Publikacji | 2018-05-01 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | https://groundai.com |
Typ Płatności | free |
Strona Rozszerzenia | https://www.groundai.com |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GroundAI", "version": "0.0.0.2", "description": "Read ArXiv papers in html", "background": { "scripts": [ "jquery-3.3.1.min.js", "background.js" ], "persistent": false }, "permissions": [ "http:\/\/arxiv.org\/", "https:\/\/arxiv.org\/", "activeTab", "tabs" ], "browser_action": { "default_icon": "images\/icon32x32.png" }, "manifest_version": 2, "icons": { "16": "images\/icon16x16.png", "32": "images\/icon32x32.png", "48": "images\/icon48x48.png", "144": "images\/icon144x144.png" }, "content_scripts": [ { "matches": [ "https:\/\/arxiv.org\/abs\/*" ], "js": [ "jquery-3.3.1.min.js", "contentScript.js" ] } ] } |