Quick Start Labels
Reading List
https://jackwhiting.co.uk/posts/lazy-loading-vanilla-js-with-webpack-laravel-mix
https://medium.com/free-code-camp/reducing-css-bundle-size-70-by-cutting-the-class-names-and-using-scope-isolation-625440de600b
Libraries
https://github.com/verlok/vanilla-lazyload
Developer Resources
https://webpack.js.org/configuration/output/
https://web.dev/articles/preload-critical-assets
Reading List
https://www.codemzy.com/blog/how-to-name-webpack-chunk
How to name a webpack chunk (including split and common chunks)
Reading List
Sidebar Labels
https://xmlexpr.blogspot.com/2025/02/speed-up-blogger-mobile-page-navigation.html
https://xmlexpr.blogspot.com/2024/09/header-widget.html
https://xmlexpr.blogspot.com/
https://xmlexpr.blogspot.com/2025/02/blogger-url-shortcut-script.html
Blogger URL Shortcut Script
February 20, 2025
2025
February
20
02:34 PM
Custom redirect scripts for Blogger blog to provide shortcut paths to quickly open the dashboard pages and HTML editor.
Place the following script at the very top of the <head>
tag:
<!-- # shortcut -->
<script>
{
const blogId = `<data:blog.blogId/>`;
/* <![CDATA[ */
const path = window.location.pathname;
let url = '';
switch (path) {
case '/admin': url = `https://blogger.com/blog/posts/${blogId}`; break;
case '/stats': url = `https://blogger.com/blog/stats/week/${blogId}`; break;
case '/layout': url = `https://blogger.com/blog/layout/${blogId}`; break;
case '/xml': url = `https://blogger.com/blog/themes/edit/${blogId}`; break;
case '/settings': url = `https://blogger.com/blog/settings/${blogId}`; break;
}
if (url) {
document.write(`<a href="${url}" id="redirect-link"></a>`);
document.querySelector("#redirect-link").click();
}
/* ]]> */
}
</script>
Usage:
/admin
Redirect to blog dashboard./layout
Redirect to blog layout editor./xml
Redirect to blog template HTML editor./stats
Redirect to weekly statistic menu./settings
Redirect to settings menu.
Example:
https://example.blogspot.com/admin
***
Trivia:
If you have multiple Blogger users logged in, you will have to modify the code so that it redirects to the correct blog author. There should be an additional user ID in the URL (I forgot what it is).
document.write
is used instead oflocation.reload
because it stops page rendering when the link is clicked, resulting in faster redirect.
https://xmlexpr.blogspot.com/search/label/scripts
scripts
https://xmlexpr.blogspot.com/2025/02/speed-up-blogger-mobile-page-navigation.html
https://xmlexpr.blogspot.com/2024/09/header-widget.html
https://xmlexpr.blogspot.com/