Inspect and view changes in PoE2 Trade Item Copier source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "PoE2 Trade Item Copier",
"version": "1.1",
"description": "Extension to help with the poe2 trading experience. Adds a copy-button for each item-listing, when clicked the item info is copied into your clipboard.",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://www.pathofexile.com/trade2/search/poe2/Standard*"
],
"js": [
"poecopy.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{fe6efbcd-763f-4ddf-80ab-60af1e7048bc}"
}
}
}