summaryrefslogtreecommitdiff
path: root/crocoite/data/per-site
diff options
context:
space:
mode:
Diffstat (limited to 'crocoite/data/per-site')
-rw-r--r--crocoite/data/per-site/instagram.js21
-rw-r--r--crocoite/data/per-site/twitter.js17
2 files changed, 38 insertions, 0 deletions
diff --git a/crocoite/data/per-site/instagram.js b/crocoite/data/per-site/instagram.js
new file mode 100644
index 0000000..da7b5ea
--- /dev/null
+++ b/crocoite/data/per-site/instagram.js
@@ -0,0 +1,21 @@
+/* Fixups for instagram: searches for the “show more” button and clicks it
+ */
+(function(){
+function fixup () {
+ var links = document.querySelectorAll ("main a");
+ for (var i = 0; i < links.length; i++) {
+ var href = links[i].getAttribute ("href");
+ if (href.search (/\?max_id=\d+$/) != -1) {
+ var click = new MouseEvent('click', {
+ view: window,
+ bubbles: true,
+ cancelable: true
+ });
+ console.log ('clicking', href);
+ links[i].dispatchEvent (click);
+ break;
+ }
+ }
+}
+window.addEventListener("load", fixup);
+}());
diff --git a/crocoite/data/per-site/twitter.js b/crocoite/data/per-site/twitter.js
new file mode 100644
index 0000000..330370a
--- /dev/null
+++ b/crocoite/data/per-site/twitter.js
@@ -0,0 +1,17 @@
+/* Fixups for twitter: Some accounts are hidden behind a “suspicious activity”
+ * message, click that.
+ */
+(function(){
+function fixup () {
+ var show = document.querySelector ("button.ProfileWarningTimeline-button");
+ if (show) {
+ var click = new MouseEvent('click', {
+ view: window,
+ bubbles: true,
+ cancelable: true
+ });
+ show.dispatchEvent (click);
+ }
+}
+window.addEventListener("load", fixup);
+}());