Skip to content

Instantly share code, notes, and snippets.

View achere's full-sized avatar

Alexander Chereshnev achere

  • Warsaw, Poland
  • 17:02 (UTC +01:00)
  • LinkedIn in/a1ch3r
View GitHub Profile
@achere
achere / dlCrx.js
Last active July 22, 2019 07:30
Bookmarklet: Download Extension file from Google Store for ungoogled-chromium
javascript: (
function() {
const hrefArr=window.location.href.split('/');
const eid=hrefArr[hrefArr.length-1];
const ver = /Chrome\/(\d\d.\d)/.exec(window.navigator.userAgent)[1];
const urlString = `https://clients2.google.com/service/update2/crx?response=redirect&acceptformat=crx2,crx3&prodversion=${ver}&x=${encodeURIComponent(`id%3D${eid}%26installsource%3Dondemand%26uc`)}`;
window.open(urlString);
}
)()