Skip to content

Instantly share code, notes, and snippets.

@Blumed
Last active September 7, 2025 04:06
Show Gist options
  • Select an option

  • Save Blumed/698b5825f7415f268a8ecdba7555425f to your computer and use it in GitHub Desktop.

Select an option

Save Blumed/698b5825f7415f268a8ecdba7555425f to your computer and use it in GitHub Desktop.
Cabin Analytics - How green is your site? Check the current page you are on using Cabin's green site checker
const bookmarklet = { name: "bookmarklet__cabin-how-green-is-your-site?", version: "1.0" };
try {
window.open(`https://withcabin.com/how-green-is-your-website?url=${window.location.href}`, '_blank', 'noopener,noreferrer');
console.log(`${bookmarklet.name}: ${bookmarklet.version}`);
} catch (error){
console.log(`${bookmarklet.name} : ${bookmarklet.version} : ${error}`);
}
// Paste the one line below into your bookmark url field for this code to work
javascript:(function(){const bookmarklet={name:"bookmarklet__cabin-how-green-is-your-site?",version:"1.0"};try{window.open(`https://withcabin.com/how-green-is-your-website?url=${window.location.href}`,"_blank","noopener,noreferrer"),console.log(`${bookmarklet.name}: ${bookmarklet.version}`)}catch(o){console.log(`${bookmarklet.name} : ${bookmarklet.version} : ${o}`)}}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment