您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
An awesome theme for Instagram. White is trash.
How trash is this? Everything's white, it hurts the eyes! Don't you want something like this? Then, use BetterInstagram, an Userscript with CSS code.
This is a beta version. Some parts of the CSS are broken/missing. There's a confirmation when loading the page. Press Ok to load the CSS, otherwise press Cancel.
var conf = confirm(
"This is beta version, some parts of the CSS are broken. I'm fixing them. Press 'Cancel' to don't load the CSS."
);
if (conf == true) {
addCSS();
}
The function
below will open a new tab and redirect you to my profile page when you'll click on the Instagram's logo one time only. It won't redirect you again if you don't refresh.
function customBtn() {
var x = document.querySelector(".oJZym").getElementsByTagName("a");
x[0].onclick = function (event) {
event.preventDefault();
window.open("https://instagram.com/failed.502/", "_blank");
window.close();
};
}