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": "Change Webpages Fonts", "version": "1.0", "description": "Change Webpages Fonts", "action": { "default_icon": { "128": "icons\/icon_128.png" }, "default_popup": "popup\/main_popup.html", "default_title": "WebPage font" }, "background": { "service_worker": "background\/background.js" }, "content_scripts": [ { "js": [ "content_scripts__run_at_end.js" ], "matches": [ "<all_urls>" ], "run_at": "document_end", "all_frames": true }, { "js": [ "content_scripts__run_at_start.js" ], "matches": [ "<all_urls>" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "storage", "tabs", "activeTab" ], "host_permissions": [ "<all_urls>" ], "icons": { "128": "icons\/icon_128.png" } }