Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ArXiv Markdown Parser", "description": "Fetches arXiv paper in HTML and converts it to Markdown with LaTeX inlined.", "version": "1.1", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "ArXiv Markdown Parser" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/arxiv.org\/abs\/*", "*:\/\/arxiv.org\/pdf\/*", "*:\/\/arxiv.org\/html\/*" ], "js": [ "lib\/turndown.umd.js", "lib\/turndown-plugin-gfm.js", "contentScript.js" ], "run_at": "document_end" } ] }