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": "Ultimate WordPress Admin Bar Manager", "description": "This Chrome extension hides the WordPress admin bar and adds tools & links to the right-click context menu.", "version": "3.0.0", "author": "Kyle Charlton", "permissions": [ "scripting", "contextMenus", "activeTab", "tabs", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "style.css" ], "matches": [ "<all_urls>" ] } ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_start" } ] }