mirror of
https://github.com/thebaer/MMRA
synced 2024-11-13 10:11:01 +00:00
93 lines
2.5 KiB
JavaScript
93 lines
2.5 KiB
JavaScript
//
|
|
// Make Medium Readable Again
|
|
//
|
|
|
|
var makeReadable = function() {
|
|
// Un-position:fixed the top nav bar
|
|
var topNav = document.querySelector('.metabar.u-fixed');
|
|
if (topNav) {
|
|
topNav.classList.remove('u-fixed');
|
|
}
|
|
// Remove the footer
|
|
var getUpdatesBar = document.querySelector('.js-stickyFooter');
|
|
if (getUpdatesBar) {
|
|
getUpdatesBar.style.display = 'none';
|
|
}
|
|
};
|
|
|
|
var hideHighlightMenu = function() {
|
|
var bar = document.querySelector('.highlightMenu');
|
|
if (bar) {
|
|
bar.style.display = 'none';
|
|
}
|
|
};
|
|
|
|
var hideDickbar = function() {
|
|
var dickbar = document.querySelector('.js-postShareWidget');
|
|
if (dickbar) {
|
|
dickbar.style.display = 'none';
|
|
}
|
|
var footerDickbar = document.querySelector('footer > .container:first-child');
|
|
if (footerDickbar) {
|
|
footerDickbar.style.display = 'none';
|
|
}
|
|
};
|
|
|
|
var disableLazyLoading = function() {
|
|
// Get all <noscript> tags accompanying dynamically-loading <img>s
|
|
var hiddenMedia = document.querySelectorAll('noscript.js-progressiveMedia-inner');
|
|
if (hiddenMedia.length === 0) {
|
|
return;
|
|
}
|
|
for (var i=0; i<hiddenMedia.length; i++) {
|
|
// Create new <img> element from the one in <noscript> and add it in.
|
|
// This is certainly a roundabout way of doing things, but I didn't want to
|
|
// spend more time reverse-engineering Medium's lazy-loading code.
|
|
var img = new Image();
|
|
var srcMatch = hiddenMedia[i].textContent.match(/src="(https:\/\/[^"]+)"/);
|
|
if (srcMatch != null) {
|
|
img.src = srcMatch[1];
|
|
img.className = hiddenMedia[i].textContent.match(/class="([^"]+)"/)[1];
|
|
hiddenMedia[i].parentNode.appendChild(img);
|
|
}
|
|
}
|
|
};
|
|
|
|
var shrinkHeaderImages = function() {
|
|
var ridiculousHeaderImage = document.querySelector('figure.graf--layoutFillWidth');
|
|
if (ridiculousHeaderImage) {
|
|
ridiculousHeaderImage.style.maxWidth = '700px';
|
|
ridiculousHeaderImage.style.margin = '0 auto';
|
|
}
|
|
}
|
|
|
|
var observer = new MutationObserver(function(mutations){
|
|
mutations.forEach(function(){
|
|
makeReadable();
|
|
shrinkHeaderImages();
|
|
});
|
|
});
|
|
|
|
var config = {attributes: true};
|
|
|
|
// This extension runs on all domains so it can Make Medium Readable Again even for publications on custom domains.
|
|
// Here we make sure the code only runs on Medium sites.
|
|
if (document.querySelector('head meta[property="al:ios:app_name"][content="medium" i]')) {
|
|
makeReadable();
|
|
shrinkHeaderImages();
|
|
|
|
chrome.storage.sync.get(null, function(items) {
|
|
if (items.hideDickbar) {
|
|
hideDickbar();
|
|
}
|
|
if (items.disableLazyImages) {
|
|
disableLazyLoading();
|
|
}
|
|
if (items.hideHighlightMenu) {
|
|
hideHighlightMenu();
|
|
}
|
|
});
|
|
|
|
observer.observe(document.body, config);
|
|
}
|