Skip to content

Commit 7765a9d

Browse files
committed
Fix lint
1 parent fbd881b commit 7765a9d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/chrome-extension/src/background.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ chrome.runtime.onMessage
7373
// Handle extension install/update
7474
chrome.runtime.onInstalled.addListener((details) => {
7575
if (details.reason === 'update') {
76-
const previousVersion = details.previousVersion;
76+
const { previousVersion } = details;
7777
const currentVersion = chrome.runtime.getManifest().version;
78-
78+
7979
logger.info(`🔄 Extension updated from ${previousVersion} to ${currentVersion}`);
80-
80+
8181
// Open update notification page
8282
chrome.tabs.create({
8383
url: 'https://mcp-pointer.etsd.tech/update-notice.html',
84-
active: true
84+
active: true,
8585
});
8686
}
8787
});

packages/chrome-extension/src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "MCP Pointer",
4-
"version": "0.4.2",
4+
"version": "0.4.3",
55
"description": "Point to DOM elements for your agentic coding tools",
66
"icons": {
77
"16": "icon.png",

0 commit comments

Comments
 (0)