Skip to content

Instantly share code, notes, and snippets.

@s2kw
Created January 23, 2014 05:52
Show Gist options
  • Save s2kw/8573606 to your computer and use it in GitHub Desktop.
Save s2kw/8573606 to your computer and use it in GitHub Desktop.
google drive に upload した image を right click -> open -> drive viewer で開き この bookmarklet を実行するだけで direct link uri が get できちゃいます。
javascript:
var reg = /^(([^:\/?#]+):)?(\/\/([^\/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/;
var m = location.href.match(reg);
var params = m[5].split("/");
var id = params[3];
window.alert("https://drive.google.com/uc?export=view&id=" + id);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment