Pardon me fellow monks and nuns for this heretic question..

Nine years ago (!!) I offered you my Automatic chrome extension generator and today I stumbled on errors in the extensions tab of chrome:

Manifest version 2 is deprecated, and support will be removed in 2023. + See https://developer.chrome.com/blog/mv2-transition/ for more detai +ls.

So I tried to simply put "manifest_version": 3, but then it complained about script no more supported and to switch to service_worker so I changed this.. and then onclick to chrome.contextMenus.onClicked.addListener .. and then..

Can some kind soul look the below JS code and help me to fix it?

The goal is simple: create a custom context menu entry acting on selected text to craft a GET to open in a new tab.

#!/usr/bin/perl use strict; use warnings; # supporting manifest v 3 # https://developer.chrome.com/blog/mv2-transition/ # https://developer.chrome.com/docs/extensions/mv3/migrating_to_servic +e_workers/ # January 2023: The Chrome browser will no longer run Manifest V2 exte +nsions. # Developers may no longer push updates to existing Manifest V2 extens +ions. my $version = 2; my $folder = $ARGV[0]; my $url = $ARGV[1]; die "$0 Directory_Name URL" unless $ARGV[1]; (my $descr = $folder) =~ s/_+/ /g; my $longname = 'Perl genarated extension - '.$descr; mkdir $folder or die "Cannot create $folder: $!"; chdir $folder or die "Cannot enter $folder: $!"; # the manifest open MANIF, '>', 'manifest.json' or die "Cannot open a file to write i +n: $!"; my $manifest = '{ "manifest_version": 3, "description": "'.$descr.'", "background": { "service_worker": "background.js"}, "name": "'.$longname.'", "permissions": [ "contextMenus", "tabs" ], "version": "1.0" }'; print MANIF $manifest; close MANIF; # the jscript open JSCRIPT, '>', 'background.js' or die "Cannot open a file to write + in: $!"; my $background ='function customfunc(info) { var searchstring = info.selectionText; chrome.tabs.create({url: "'.$url.'" + searchstring}) } chrome.contextMenus.onClicked.addListener(function(info, tab) { if (info.menuItemId == "'.$descr.'") });'; print JSCRIPT $background; close JSCRIPT;

In the case it is useful here the relevant part of diff -ing the two versions

16c26 < "manifest_version": 2, --- > "manifest_version": 3, 19c29 < "scripts": ["background.js"]}, --- > "service_worker": "background.js"}, 33c43,47 < chrome.contextMenus.create({title: "'.$descr.'", contexts:["selectio +n"], onclick: customfunc});'; --- > > chrome.contextMenus.onClicked.addListener(function(info, tab) { > if (info.menuItemId == "'.$descr.'") > });'; > 35c49 < close JSCRIPT; \ No newline at end of file --- > close JSCRIPT;

L*

update maybe something like this?

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.

In reply to [OT] migrating from scripts to service_worker in js perl generated extensions for chrome by Discipulus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.