refined-naver-blog

😎 Better Naver blog browsing

GPL-3.0 License

Stars
10

refined-naver-blog

Makes Naver blogs more readable and less distractive.

before after
before after
# Build extension
zip -r refined-naver-blog.xpi icons main.css manifest.json

 

Userscript version

I haven't made this plugin into a Chrome browser extension yet because I found it a bit bothersome. Chrome users can install the ViolentMonkey extension and then add the user script below.

// ==UserScript==
// @name    refined-naver-blog
// @match   *://m.blog.naver.com/*
// @grant   GM_addStyle
// @run-at  document-start
// ==/UserScript==
GM_addStyle(`
body#body {
  position: relative;
}
body#body > div.Ngnb.gnb_bg_white {
  position: absolute;
}
.floating_menu {
  position: absolute;
  transform: translate(0, 100%);
}
#_post_area {
  padding-right: 0;
}
.tablet_aside._relatedCategoryPostListArea {
  display: none;
}
`)

 


refined-naver-blog is primarily distributed under the terms of the GNU General Public License v3.0 or any later version. See COPYRIGHT for details.