0
I want to create a Chrome extension that periodically checks a response URI JSON
and that displays a notification to the user (in some cases).
This must happen, regardless of the website where the user is browsing.
I will create an example of use:
- Extension Draw Example;
- Every 2 hours it collects the
JSON
, and if there is a key in itcupom
, displays the alert; - The alert tells the user: "You won! Enter the key value coupon
cupom
received in thejson
.
What Chrome features and permissions should I use?
Extra: Does anyone know an example or open source that works similar to the example I created?