summaryrefslogtreecommitdiff
path: root/deps/v8/tools/link_clicker.extension/content.js
blob: 4ab825e01e75e633cb61988cff42def05374975c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

(function linkClickerContentScript() {
  // time in ms
  let minInterval;
  let maxInterval;
  let pattern;
  let enabled;
  let timeoutId;

  // Initialize variables.
  chrome.runtime.sendMessage({type:'get'}, function(msg) {
    if (msg.type == 'update') updateFromMessage(msg);
  });

  chrome.runtime.onMessage.addListener(
    function(msg, sender, sendResponse) {
      if (msg.type == 'update') updateFromMessage(msg);
    });

  function findAllLinks() {
    let links = document.links;
    let results = new Set();
    for (let i = 0; i < links.length; i++) {
      let href = links[i].href;
      if (!href) continue;
      if (href && href.match(pattern)) results.add(href);
    }
    return Array.from(results);
  }

  function updateFromMessage(msg) {
    console.log(msg);
    minInterval = Number(msg.minInterval)
    maxInterval = Number(msg.maxInterval);
    pattern = new RegExp(msg.pattern);
    enabled = Boolean(msg.enabled);
    if (enabled) schedule();
  }

  function followLink() {
    if (!enabled) return;
    let links = findAllLinks();
    if (links.length <= 5) {
      // navigate back if the page has not enough links
      window.history.back()
      console.log("navigate back");
    } else {
      let link = links[Math.round(Math.random() * (links.length-1))];
      console.log(link);
      window.location.href = link;
      // Schedule in case we just followed an anchor.
      schedule();
    }
  }

  function schedule() {
    clearTimeout(timeoutId);
    let delta = maxInterval - minInterval;
    let duration = minInterval + (Math.random() * delta);
    console.log(duration);
    timeoutId = setTimeout(followLink, duration);
  }
})();