Skip to content

Instantly share code, notes, and snippets.

View tathagata's full-sized avatar
🐢
debugging

Tathagata tathagata

🐢
debugging
View GitHub Profile
@paulirish
paulirish / how-to-view-source-of-chrome-extension.md
Last active May 30, 2024 06:59
How to view-source of a Chrome extension

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.

@staltz
staltz / introrx.md
Last active May 30, 2024 18:43
The introduction to Reactive Programming you've been missing
@jussi-kalliokoski
jussi-kalliokoski / silence.js
Created October 6, 2011 11:47
Methods for creating an audio tag filled with a specified time of silence.
(function(g){
/*var URL =
window.URL ||
window.webkitURL ||
window.mozURL ||
window.msURL ||
window.oURL;
var BlobBuilder =