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": "GPTS Exporter - youtube to pdf", "short_name": "GPTS", "author": "GPTS Exporter", "version": "1.0.2", "description": "Easily download the content of YouTube videos as a PDF.", "permissions": [ "tabs", "activeTab" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "youtube2pdf", "default_icon": { "16": "icon32.png", "48": "icon64.png", "128": "icon128.png" } }, "icons": { "16": "icon32.png", "48": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "resources": [ "lib\/NotoSans-Bold-bold.js", "lib\/NotoSans-Regular-normal", "lib\/jsPdf.js" ] } ] }