File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/chrome-extension/src Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -73,15 +73,15 @@ chrome.runtime.onMessage
7373// Handle extension install/update
7474chrome . 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} ) ;
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments