क्या मेरे Google+ खाते को हटाने के बिना मेरी व्यक्तिगत Google+ प्रोफ़ाइल पर मेरे सभी पोस्ट, टिप्पणियों और + 1 को हटाने का कोई तरीका है ताकि मैं अपने मित्रों और परिचितों को रख सकूं?
क्या मेरे Google+ खाते को हटाने के बिना मेरी व्यक्तिगत Google+ प्रोफ़ाइल पर मेरे सभी पोस्ट, टिप्पणियों और + 1 को हटाने का कोई तरीका है ताकि मैं अपने मित्रों और परिचितों को रख सकूं?
जवाबों:
document.body.style.height = "200%"; // Always allow to scroll to wake the ajax
(function deleteItems() {
// All of the X buttons but from posts being removed
const xButtons = document.querySelectorAll(".kKHdKc:not(.FmKyud) .XVzU0b.J3yWx");
// If reached the end of the list
const reachedEnd = window.getComputedStyle(document.querySelector(".Jb45He.SrWDEb")).getPropertyValue("display") !== "none";
if (reachedEnd) {
// Stop if no more buttons to delete
console.log("No more buttons! Stopping");
clearInterval(deleteInterval);
return;
} else if (xButtons.length === 0 && document.querySelectorAll(".kKHdKc.FmKyud").length === 0) { // No more buttons to press and it's not disposing of old comments
// Scroll to wake up G+, an easier hack than calling G+ or loading all comments on a slow system
window.scrollTo(0, document.body.scrollHeight);
window.setTimeout(function() {
window.scrollTo(0, 0);
}, 10);
}
// Click the X buttons
for (let i = 0; i < xButtons.length; i++) {
xButtons[i].click();
// Click the all the modals' delete buttons
window.setTimeout(function() {
let modalDeleteButtons = document.querySelectorAll(".HvOprf .RveJvd");
for (let i = 0; i < modalDeleteButtons.length; i++) {
modalDeleteButtons[i].click();
}
}, 3);
}
window.setTimeout(function() {deleteItems();}, 100); // Forces at least the syncronous tasks to finish which is why I used this over an interval
})();
यदि यह थोड़ी देर के बाद रुक जाता है, तो तीन सेटटाइमआउट देरी को कुछ बड़ा करें। मेरे सिस्टम के लिए क्रमशः 10, 3, और 5 एमएस समय कुछ ठीक मान थे। मैंने उनके बारे में नहीं सोचा था, बल्कि मैंने उन्हें तब बदला जब मैंने एक भाग पीछे देखा।
कोड के साथ सावधान रहें कि आप कंसोल में प्रवेश करते हैं और कोड में कंसोल में प्रवेश नहीं करते हैं जब तक कि आप यह नहीं समझते कि कोड क्या करता है (जैसा कि कंसोल में स्व एक्सएसएस चेतावनी बताती है)।
मैंने यह जावास्क्रिप्ट लिखी है जिसका उपयोग आप कंसोल में कर सकते हैं जो सभी पोस्ट हटा देगा और https://plus.google.com/apps/activities/ पेज x
से क्लिक करने के बाद पुष्टि बॉक्स पर क्लिक करेगा ।
var t = 500;
document.querySelectorAll('.XVzU0b.J3yWx').forEach(function(el,k) {
setTimeout(function() {
el.click();
setTimeout(function() {
document.querySelectorAll('.CwaK9 > span')[1].click();
}, 200);
}, (t * k));
});
थोड़ा कम t
(लेकिन 200 से अधिक) थोड़ा तेज भी काम करना चाहिए।