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", "manifest_version": 3, "name": "Kindle Highlights Extractor", "version": "1.0", "description": "Extract Kindle Highlights to PDF", "permissions": [ "activeTab" ], "background": { "service_worker": "scripts\/background.js" }, "action": { "default_title": "Start Extracting Highlights", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/read.amazon.com\/notebook", "https:\/\/read.amazon.com\/kp\/notebook" ], "js": [ "scripts\/pdfmake.min.js", "scripts\/vfs_fonts.js", "scripts\/content.js" ], "css": [ "scripts\/content.css" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/read.amazon.com\/kp\/notebook" ] }