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": "Wishlist Assistant by Listery",
"short_name": "Wishlist Listery",
"description": "Allows you to quickly save items or services you like directly to your wishlist from your browser. Save your wish with one click.",
"version": "1.0.0",
"permissions": [
"storage"
],
"icons": {
"32": "icons\/32x32.png",
"64": "icons\/64x64.png",
"128": "icons\/128x128.png"
},
"action": {
"default_icon": "icons\/128x128.png",
"default_popup": "index.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
]
}