websites Development, scripts , hacks , patches .
- Details
- Written by: khalil shreateh
- Category: Websites Development
- Hits: 1049
To write a Telegram bot, you'll need to do the following:
Read more: To build a Telegram bot without hosting with zero dollar in cost
- Details
- Written by: khalil shreateh
- Category: Websites Development
- Hits: 3044
Recovering from a rate limit 429 errors
When these rate limits are exceeded, a 429 'Too many requests' error is returned from the endpoint. As discussed below, when rate limit errors occur, a best practice is to examine HTTP headers that indicate when the limit resets and pause requests until then.
- Details
- Written by: khalil shreateh
- Category: Websites Development
- Hits: 1346
One of the most common uses for an extension is as a notifier. For example, the Google Gmail Checker, an official Google extension and the most popular one in the gallery, constantly checks your Gmail inbox for new unread mail.
Read more: HOW TO BUILD A CHROME EXTENSION, PART 3: BACKGROUND PAGES AND SCHEDULING REQUESTS
- Details
- Written by: khalil shreateh
- Category: Websites Development
- Hits: 1477
Chrome allows extensions that use its page action or browser action API to show popups when clicked. To add this popup, you’d add a popup.html file to your extension and the following to the manifest.json for browser actions:
Read more: HOW TO BUILD A CHROME EXTENSION, PART 2: LOADING ANY WEB PAGE IN A POPUP
- Details
- Written by: khalil shreateh
- Category: Websites Development
- Hits: 1255
An important aspect of almost all extensions is being able to save user settings. This can be achieved in Chrome easily by using the localStorage object and Chrome’s extension API options page.
Read more: HOW TO BUILD A CHROME EXTENSION, PART 1: OPTIONS AND LOCALSTORAGE