A browser extension for Chrome & Firefox that supercharges the AQW Wiki with item previews, calculators, inventory tracking, dark mode, and more.
Download ZIP (Chrome) · Firefox Add-on · Website · Install Guide
AQWikiTools is a free, open-source browser extension (Chrome & Firefox) built for AdventureQuest Worlds players who browse the AQW Wiki. It injects rich functionality directly into wiki and account pages — hover previews, merge/quest calculators, owned-item indicators, full dark mode, and a standalone Farm Tracker with thousands of items — so you never have to leave the wiki to plan your next grind.
The extension syncs your in-game inventory from account.aq.com and uses it across every feature: highlighting items you own, calculating what you still need, and tracking your overall collection progress.
Yes. AQWikiTools is 100% open source — every line of code is right here for you to inspect. Here's what you should know:
| Concern | Answer |
|---|---|
| Is the code open? | Yes. Every file is publicly available in this repository under the MIT License. |
| Does it collect my data? | No. The extension does not send your data anywhere. Everything is stored locally in your browser via chrome.storage.local. |
| Does it access my AQW account? | It reads your public inventory from account.aq.com (a page you're already logged into). It never touches your password or login credentials. |
| What permissions does it need? | Only storage (to save settings locally) and access to artix.com (to check server boosts). That's it. |
| Can I verify it myself? | Absolutely. You can scan the ZIP on VirusTotal before extracting, read every .js file in this repo, or use Chrome's built-in extension audit at chrome://extensions. |
| Does it run in the background? | Only a minimal service worker that proxies fetch requests to the wiki (to bypass CORS). No background data collection, no analytics, no tracking. |
Tip: If you're still unsure, download the ZIP and upload it to VirusTotal.com — it's a free tool by Google that scans files with 70+ antivirus engines. You'll see it comes back clean.
Quick access to inventory sync status, settings, dark mode toggles, and the Farm Tracker — all from one clean toolbar popup.
Toggle dark mode, image previews, and character page settings. View your active server boosts (Gold, XP, Rep, Class Points) and jump straight to the Farm Tracker or AQW Wiki.
Full wiki dark mode with owned-item highlighting. Items you own are color-coded with bank/inventory icons displayed right on the page.
Spot community-estimated drop rate badges right next to item names! Plus, hover any item to see its image, rarity, and description instantly.
Automatically detects quest pages and builds a live progress calculator showing needed vs. owned materials, quantities still missing, and an overall progress bar.
Browse every unowned drop item in a filterable, searchable card grid. Use the advanced filtering bar to show only AC, Seasonal, Legend, or Normal items, and adjust the grid layout to your liking. View drop source details at a glance.
Click any item to open a detailed modal with its description and drop sources. Hover to preview monster and location. Now features community-estimated drop rates!
View all unowned merge shop items grouped by shop. Each group shows NEEDED badges and an ownership progress indicator per shop.
View all unowned quest reward items grouped by quest. Easily track what quests you still need to complete to add items to your collection.
See all your banked items displayed in a card grid with IN BANK badges, rarity tags, and source information.
Track your overall collection completion with donut charts broken down by Non-Rare, AC, and Seasonal categories.
When viewing another player's character page, an [Owned] tag appears next to items you also own — instantly compare inventories at a glance.
| Layer | Technology |
|---|---|
| Platform | Chrome & Firefox Extension — Manifest V3 |
| Language | Vanilla JavaScript (no build step / bundler) |
| Styling | Plain CSS with CSS custom properties |
| Browser APIs | chrome.storage.local, chrome.runtime, chrome.tabs, Content Scripts, Service Worker |
| External Data | Fetch to AQW Wiki (item HTML), Artix.com calendar (server boosts) |
| Fonts | Inter via Google Fonts |
| Icons | Font Awesome 6.5 via CDN |
AQWikiTools/
├── manifest.json # Extension manifest (MV3)
├── LICENSE # MIT License
│
├── assets/
│ ├── icons/ # Toolbar icons (16, 48, 128 px)
│ └── images/ # In-page assets (banner, boost icons, bank/inventory badges)
│
├── data/
│ ├── WikiItems.json # Master item database (~thousands of entries)
│ ├── merge_shops.json # Merge shop definitions with ingredients and NPCs
│ ├── quests.json # Quest data with requirements and locations
│ ├── locations.json # Map/monster index for source tooltips
│ ├── Classes.json # Class data
│ └── HardFarm.json # Hard farm item data
│
├── src/
│ ├── pages/
│ │ ├── popup.html # Toolbar popup UI
│ │ └── farm-tracker.html # Full-page Farm Tracker (opens in new tab)
│ │
│ ├── scripts/
│ │ ├── background.js # Service worker — proxies fetch requests to wiki & Artix
│ │ ├── content.js # Content script — hover previews, calculators, dark mode, owned badges, boost banners
│ │ ├── inventory-matching.js # Shared canonical item-name matching helpers
│ │ ├── ProcessAcountItems.js # Updated AqwDoIHave API fetch, translation, and formatting helpers
│ │ ├── main.js # Account-page sync orchestration for AQWikiTools storage
│ │ ├── popup.js # Popup controller — settings, theme toggles, sync status, boost display
│ │ └── farm-tracker.js # Farm Tracker logic — tabs, filters, modals, pagination, charts
│ │
│ └── styles/
│ ├── content.css # Injected on wiki & account pages
│ ├── popup.css # Popup stylesheet
│ └── farm-tracker.css # Farm Tracker stylesheet
│
└── website/ # Static landing / promo page (not part of the extension bundle)
├── index.html
├── style.css
└── assets/
├── logo.png
├── banner.png
└── screenshots/ # Feature screenshots used on the landing page
- Install from Firefox Add-ons — click "Add to Firefox". That's it!
- Sync your inventory — visit account.aq.com/AQW/Inventory while logged in.
- Browse the Wiki at aqwwiki.wikidot.com and enjoy!
- Download the ZIP from this repository.
- Extract the ZIP to a folder on your computer.
- Open Chrome and go to
chrome://extensions. - Enable Developer Mode (toggle in top-right).
- Click "Load unpacked" and select the extracted folder (the one with
manifest.json). - Sync your inventory — visit account.aq.com/AQW/Inventory while logged in.
- Browse the Wiki at aqwwiki.wikidot.com and enjoy!
git clone https://github.com/R41CY/AQWikiTools.gitThen follow the Chrome steps 3–7 above.
| Permission | Reason |
|---|---|
storage |
Persists synced inventory, user preferences, theme settings, and boost cache locally. |
https://www.artix.com/* |
Fetches the Artix event calendar to detect active server boosts (Gold, XP, Rep, Class). |
The extension only runs on aqwwiki.wikidot.com and account.aq.com. It does not collect, transmit, or store any data externally — everything stays in your browser's local storage.
| Feature | Preview |
|---|---|
| Popup | ![]() |
| Dark Mode | ![]() |
| Hover Preview | ![]() |
| Quest Calculator | ![]() |
| Farm Tracker | ![]() |
| Item Detail | ![]() |
| Merge Tracker | ![]() |
| Quest Tracker | (Available in Farm Tracker) |
| Bank View | ![]() |
| Collection Stats | ![]() |
| Character Compare | ![]() |
AQWikiTools was inspired by and builds upon ideas from:
- Wiki Image — item image previews for the AQW Wiki
- AqwDoIhave — inventory ownership checker
Credit to their respective creators for the original concepts and community data.
This project is provided under the MIT License. You are free to use, modify, and distribute it.
Built for the AQW community. Free & open source, forever.











