62 lines
24 KiB
JavaScript
Raw Normal View History

2024-07-24 13:57:40 +00:00
/*******************************************************************************
uBlock Origin Lite - a comprehensive, MV3-compliant content blocker
Copyright (C) 2014-present Raymond Hill
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uBlock
*/
/* jshint esversion:11 */
'use strict';
/******************************************************************************/
// Important!
// Isolate from global scope
(function uBOL_cssGenericImport() {
/******************************************************************************/
// annoyances-others
const toImport = [[3491667,"#FooterboardMobile"],[2643162,"#ac-lre-player"],[13469623,"#ac-lre-player-ph"],[848853,"#amp-smart-banner-download"],[296635,"#article_sharing_footer"],[16176126,"#cxense_widget"],[16521278,"#envato-widget"],[10750263,"#feedback-bottomentry"],[12393430,"#feedback_callout"],[4590364,"#feedback_widget_tab"],[5434650,"#feedbacklinktab"],[6768180,"#feedburner_left"],[10506299,"#feedburner_right"],[7414602,"#feedburneremailwidget-3"],[15396026,"#gc_message_bar"],[16564781,"#hellobar-container,#hellobar_container"],[9209859,"#hellobar-takeover"],[2645331,"#hellobar-wrapper"],[4194013,"#jbb_widget_customizable"],[12817118,"#meebo-iframe"],[11405212,"#mvp-prev-next-wrap"],[12149617,"#noti_msg"],[14658214,"#oneSignalBell"],[8290161,"#onesignal-bell-container"],[3638864,"#onesignal-popover-container"],[13918386,"#phxtags-belowcontent"],[4335209,"#piano_bottom_ribbon_wrapper"],[1121892,"#ppsPopupBgOverlay"],[14741618,"#prev-next-wrap"],[14961336,"#prev-post-wrap"],[15080520,"#pubexchange_widget2"],[3790078,"#readNextWidget"],[15534445,"#sdac_feedburner_widget-3"],[13994531,"#simplereach-slide-element"],[14742143,"#sumotest-badge"],[13873846,"#uservoice-feedback"],[16430045,"#uservoice-feedback-tab"],[12253099,"#widget_detail_postlinks"],[8287150,"#wpd-bubble-wrapper"],[3025307,"#wpfront-notification-bar-spacer"],[9928174,"#wpl-likebox"],[4040863,"#zerg-target"],[15337065,".UpNext-Wrapper"],[8924366,".abicon-feed"],[15057936,".android-smart-banner"],[11225416,".article-next-sticky"],[4120133,".bbccom_text"],[16584179,".block-simplenews"],[14937417,".dailydeal_wrapper"],[3290967,".dd_ajax_float"],[795409,".feedbackTab"],[12838575,".floatingfeedback"],[14358762,".fyre-notifier-container"],[9121034,".grecaptcha-badge[data-style]"],[7696434,".gt-popup"],[11297082,".homeDonateCta"],[7471861,".house-ad-wrap"],[8053703,".inlinkz-widget"],[5434054,".ione-widget-jobs"],[5062787,".jnews_popup_post_container"],[2247735,".klarna-banner"],[5952393,".notifyjs-corner"],[9239152,".ntfc_overlay"],[3632841,".ntfc_popup"],[13272348,".onesignal-bell-container"],[2706137,".onesignal-customlink-container"],[14147151,".onesignal-slidedown-container"],[1782005,".partage_reseaux_sociaux"],[13868608,".pin-it-btn-wrapper"],[7192617,".plista-suggestions"],[9954208,".ppsPopupShell"],[3036489,".prev-next-article"],[1232034,".prevNextPost"],[14771794,".readmore-pop-up"],[8179105,".recommended-flyout-wrap"],[9543081,".sailthruRecommendation"],[878155,".td-more-articles-box"],[10634857,".trustpilot-widget"],[1282151,".upNext-container"],[3692777,".vf-conversation-starter"],[13580375,".widget-feedburner"],[1104513,".widget_al2fb"],[14953295,".widget_feedburnerformwidget"],[1104810,".widget_feeds"],[13061591,".widget_ione-jobs_v2"],[4716866,".widget_mailster_signup"],[14559817,".widget_mc4wp_widget"],[14528970,".widget_mybloglog"],[16677302,".widget_pushpad_widget"],[2773113,".widget_sdac_feedburner_widget"],[12612525,".widget_social_icons"],[5815844,".widget_wpjb-recent-jobs"],[1900635,".widget_wysija"],[7765032,".wpmchimpa-overlay-bg"],[14125034,".preezie-widget-modal"],[10682847,"#cb-widget-sales-pop"],[1565383,"#goodreviews-wrapper"],[9670481,"#message-purchased.wn-background-template-type-2,#message-purchased.wn-extended"],[12413875,"#mps-sales-notification"],[5599290,"#recent_sales_ticker"],[8532275,"#sales-pop-plugin"],[15068329,".cbSalesPopContainer"],[3600967,".ck-sp-app-wrapper"],[3160760,".fomo-notification-container"],[16180033,".js-pn.payment-notification"],[14939602,".noti-container-main"],[6197760,".source-woocommerce.nx-notification"],[10711324,".wpcsn-notification-inner"],[2743036,".yo-notification"],[2946651,".vjs-pip-y-bottom"],[50083,"div.l > .acu.act"],[9982692,"#credential_picker_container"],[2225696,"#credential_picker_iframe"],[16646639,"#consumer-app > #navbar-wrap > .pm-root-announcement,#consumer-app > .modals-wrap > .pm-follow-v2"],[5161247,".pm-follow-wrap"],[5058133,".bp-banner"],[13571265,"#hot-jobs"],[12780801,".js-stickyFooter.u-bottom0.u-fixed"],[14261456,".postActionsBar-container"],[10643084,".u-zIndexM
const genericSelectorMap = self.genericSelectorMap || new Map();
if ( genericSelectorMap.size === 0 ) {
self.genericSelectorMap = new Map(toImport);
return;
}
for ( const toImportEntry of toImport ) {
const existing = genericSelectorMap.get(toImportEntry[0]);
genericSelectorMap.set(
toImportEntry[0],
existing === undefined
? toImportEntry[1]
: `${existing},${toImportEntry[1]}`
);
}
self.genericSelectorMap = genericSelectorMap;
/******************************************************************************/
})();
/******************************************************************************/