Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chris-castillo-dev/f35fe5c4ca2ee720e0d57bfd1770886e to your computer and use it in GitHub Desktop.
Save chris-castillo-dev/f35fe5c4ca2ee720e0d57bfd1770886e to your computer and use it in GitHub Desktop.
javascript:(function(){
const folderID = "GOOGLE_DRIVE_FOLDER_ID";
var userInput = prompt("What would you like to search for?");
if(userInput){
userInput = encodeURIComponent(userInput);
var url = "https://drive.google.com/drive/u/0/search?q=" + userInput + "%20in:" + folderID;
window.location.href = url;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment