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": "YouTube Auto Liker", "version": "1.0.0", "description": "Automatically like YouTube videos with batch processing", "permissions": [ "activeTab" ], "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "YouTube Auto Liker" }, "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" } }