Auren
Прямо он не портируется, а функция блокирования страниц, на текущий момент, есть только в iron.
mihas83
Цитата:
А, ну такое и скриптом легко делается: hide-img.user.js
Код: [no]// ==UserScript==
// @name hide-img
// @author Lex1
// @version 0.2
// @run-at document-start
// @include *
// @description Hide/Show images. Press Ctrl+Alt+Shift for it.
// ==/UserScript==
(function(){
var addStyle = function(css){
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.setAttribute('style', 'display: none !important;');
s.appendChild(document.createTextNode(css));
return (document.getElementsByTagName('head')[0] || document.documentElement).appendChild(s);
};
// Set style at loading page
var css; if(document.documentElement instanceof HTMLHtmlElement){
setTimeout(function(){css = addStyle('img{ display: none !important }')}, 1);
};
document.addEventListener('keydown', function(e){
// Hide/Show images with Ctrl+Alt+Shift
if(e.shiftKey && e.ctrlKey && e.altKey){
if(css){css.parentNode.removeChild(css); css = null}else{css = addStyle('img{ display: none !important }')};
};
}, false);
})();
[/no]
Прямо он не портируется, а функция блокирования страниц, на текущий момент, есть только в iron.
mihas83
Цитата:
а в функции ''антибосс''
А, ну такое и скриптом легко делается: hide-img.user.js
Код: [no]// ==UserScript==
// @name hide-img
// @author Lex1
// @version 0.2
// @run-at document-start
// @include *
// @description Hide/Show images. Press Ctrl+Alt+Shift for it.
// ==/UserScript==
(function(){
var addStyle = function(css){
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.setAttribute('style', 'display: none !important;');
s.appendChild(document.createTextNode(css));
return (document.getElementsByTagName('head')[0] || document.documentElement).appendChild(s);
};
// Set style at loading page
var css; if(document.documentElement instanceof HTMLHtmlElement){
setTimeout(function(){css = addStyle('img{ display: none !important }')}, 1);
};
document.addEventListener('keydown', function(e){
// Hide/Show images with Ctrl+Alt+Shift
if(e.shiftKey && e.ctrlKey && e.altKey){
if(css){css.parentNode.removeChild(css); css = null}else{css = addStyle('img{ display: none !important }')};
};
}, false);
})();
[/no]