⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x__tagger.js

📁 在网页上对图片及文字打标记,并提示的功能,以及注入脚本绝不干涉网页原有脚本的特色。
💻 JS
字号:
function x__window_onload() {
	
	//include stylesheet
	var link = document.createElement("LINK");
	link.rel = "stylesheet";
	link.type = "text/css";
	link.href = "css/x__tagger.css";
	link.charset = "utf-8";
	document.body.appendChild(link);
	
	//create a iframe tag into body, and funtion run in the iframe. this can be avoid function conflict with exists function in the original page
	var iframe = document.createElement("IFRAME");
	iframe.src = "js/x__tagger_inner.html";
	iframe.style.display = "none";
	document.body.appendChild(iframe);
}

if (window.addEventListener) {
	window.addEventListener("load", x__window_onload, false);
} else if (window.attachEvent) {
	window.attachEvent("onload", x__window_onload);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -