NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name RemoveIsThisPageHelpful
// @description Removes the Microsoft popup "Is this page helpful?"
// @version 1.0
// @author Codegarg
// @homepageURL http://geircode.no/removing-microsofts-is-this-page-helpfulpopup/
// @license MIT
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js
// ==/UserScript==
$(document).ready(function () {
if ($('#ux-footer').length) {
console.log('Removing ux-footer');
$('#ux-footer').remove();
}
if ($('#openFeedbackContainer').length) {
console.log('Removing openFeedbackContainer');
$('#openFeedbackContainer').remove();
}
if ($('#standardRating').length) {
console.log('Removing standardRating');
$('#standardRating').remove();
}
if ($('.feedback-visible').length) {
console.log('Removing feedback-visible');
$('.feedback-visible').remove();
}
if ($('.feedback-hidden').length) {
console.log('Removing feedback-hidden');
$('.feedback-hidden').remove();
}
if ($('.feedback-hidden').length) {
console.log('Removing feedback-hidden');
$('.feedback-hidden').remove();
}
if ($('.static-feedback-test-2').length) {
console.log('Removing static-feedback-test-2');
$('.static-feedback-test-2').remove();
}
if ($('#helpful').length) {
console.log('Removing helpful');
$('#helpful').remove();
}
$("<style type='text/css'> .feedback-visible{ display: none;} </style>").appendTo("head");
var woot = window.top.document.children[0].childNodes[0];
$("<style type='text/css'> .ofb-vote{ display: none;} </style>").appendTo(woot);
});