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": "EasyExile Trade Extension",
"version": "2.2",
"description": "PoE trading helper: View dust values, find bulk sellers, highlight items by modifiers, and search with keywords.",
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https:\/\/poe.ninja\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "EasyExile Trade Extension",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/www.pathofexile.com\/trade\/*"
],
"js": [
"content.js",
"seller_tracker.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/www.pathofexile.com\/trade\/*"
],
"js": [
"interceptor.js"
],
"world": "MAIN",
"run_at": "document_start"
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"images\/dust.png",
"dust-items.json"
],
"matches": [
"*:\/\/www.pathofexile.com\/*"
]
}
]
}