-
-
Save buley/779967 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script> | |
// Fired when a URL is visited, providing the HistoryItem data for that URL. | |
chrome.history.onVisited.addListener(function(historyItem) { | |
// Deletes all items from the history. | |
chrome.history.deleteAll(function() {}); | |
}); | |
</script> | |
</head> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "No Browsing History", | |
"version": "0.1", | |
"description": "Absolutely no browsing history while using Chrome.", | |
"permissions": [ | |
"history" | |
], | |
"background_page": "background.html" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment