Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 ALL


  Chrome extension manifest v2 migration to v3

In 2023, Google would not allow Chrome extensions with manifest version before v3 to be listed on Chrome web stores as v3 extensions add more security privacy related restrictions on some of the functions. Hence all extensions with manifest v2 must migrate to v3. In this post, we would show how we did the migration for one of our extensions and the changes made.There is a checklist provided by Chrome team on what needs to be updated so that the extension can still work in v3. It can be checked before your migration starts.The first change needs to be made is to update the manifest_version from...

1,960 0       CHROME EXTENSION MANIFEST V3 MIGRATION


  Chrome extension to display desktop notification

Have you ever thought about writing extension for web browsers so that we can complete some tasks easily. Do you think writing extension for browsers is very difficult? You have no clue where to begin? On Chrome, this isn't any problem now as long as you know how to write HTML,CSS and JavaScript.We will show one example of Chrome extension today. The extension will display a desktop notification on your desktop. You need to create two files here, one is the notification.json which is the configuration file for the extension, it contains the name and version and some initialization information ...

17,631 8       EXAMPLE CHROME EXTENSION DESKTOP NOTIFICATION