Guest User

Untitled

a guest
Jul 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. // Fired when a URL is visited, providing the HistoryItem data for that URL.
  6. chrome.history.onVisited.addListener(function(historyItem) {
  7. // Deletes all items from the history.
  8. chrome.history.deleteAll(function() {});
  9. });
  10. </script>
  11. </head>
  12. </html>
Add Comment
Please, Sign In to add comment