You would need to run a script that basically iterates through your list and checks the DOM to see if there's a match. Keep in mind that a selector can be a tag, class, id, etc... In your list, all selectors would be treated as a tag selector so you would need to provide the right selector and the rest will fall into place (#id or .class-name or tagName):
( () => {
const elements = [
"blogrss",
"btnrss",
"buttonsrssfeed",
"copypasteblocker",
"facebook128x128",
"feedicon",
"iconrss",
"instagram128x128",
"jobwidget",
"pinterest128x128",
"pushnotification",
"rss128x128"
];
const matchedElements = [];
elements.forEach( (el) => {
const match = document.querySelectorAll(el);
if (match && match.length > 0) {
matchedElements.push({ elementName: el, matches: match.length });
}
});
alert(`Found ${matchedElements.length}`);
console.log(matchedElements); // More detailed view of the matches
})();