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": "GiftPals Wishlist Extension",
"version": "1.0.0",
"description": "Add products to your GiftPals wishlist with one click. Extract product images, prices, and details automatically from any website.",
"author": "Mohammad Arshiya Shabdin, Mohammad Abbasi",
"homepage_url": "https:\/\/giftpals.com",
"icons": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png",
"256": "icons\/icon256.png"
},
"permissions": [
"activeTab",
"scripting",
"storage",
"tabs",
"windows"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"wish-form.html",
"wish-form.css",
"wish-form.js",
"login.html",
"login.css",
"login.js",
"image_selector.html",
"image_selector.css",
"image_selector.js",
"popup.html",
"popup.css",
"popup.js",
"api-service.js",
"config.js"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_popup": "image_selector.html",
"default_title": "GiftPals Wishlist",
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
]
}