-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbrowser-extension.html
119 lines (112 loc) · 3.58 KB
/
browser-extension.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lifescope-browser-extension</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
</head>
<body class="stackedit">
<div class="stackedit__left">
<div class="stackedit__toc">
<ul>
<li><a href="#lifescope-browser-extension">LIFESCOPE-BROWSER-EXTENSION</a>
<ul>
<li><a href="#repository">Repository</a></li>
<li><a href="#data-collection-sources">Data Collection Sources</a></li>
<li><a href="#developer-setup">Developer Setup</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="stackedit__right">
<div class="stackedit__html">
<h1 id="lifescope-browser-extension"><a href="https://github.com/LifeScopeLabs/lifescope-browser-extension">LIFESCOPE-BROWSER-EXTENSION</a></h1>
<h2 id="repository"><a href="https://github.com/LifeScopeLabs/lifescope-browser-extension">Repository</a></h2>
<p>(development phase, medium priority)</p>
<ul>
<li>Regularly post browser history into LIFESCOPE schema</li>
<li>Capture web history on a url, site visit, or domain basis</li>
<li>Scrape important info (like netflix or hulu history)</li>
<li>Surface metadata (oEmbed, Embedly)</li>
<li>Capture and store location data</li>
</ul>
<h3 id="requirements">Requirements</h3>
<ul>
<li><strong>MVP</strong>: Reconnect current extension to the LIFESCOPE API.</li>
<li>Remove CoffeeScript and convert to a Universal Browser Extension.</li>
<li>Add Scraping for selected domains.</li>
<li>Record locations.</li>
</ul>
<h3 id="dependencies">Dependencies</h3>
<ul>
<li>Vue/Nuxt compatible</li>
<li>CoffeeScript (To be removed)</li>
</ul>
<h3 id="examples">Examples</h3>
<ul>
<li><a href="https://www.smashingmagazine.com/2017/04/browser-extension-edge-chrome-firefox-opera-brave-vivaldi/">Universal Browser Extension Dev Example</a></li>
<li><a href="https://developer.mozilla.org/en-US/Add-ons/WebExtensions">Mozilla WebExtensions Standards</a></li>
<li><a href="https://github.com/martinsbalodis/web-scraper-chrome-extension">https://github.com/martinsbalodis/web-scraper-chrome-extension</a></li>
<li><a href="https://github.com/mrhegemon/chrome-export-history">https://github.com/mrhegemon/chrome-export-history</a></li>
</ul>
<p><strong>Opt in to browser history collection and scraping on supported sites.</strong></p>
<p><img src="https://lifescopelabs.github.io/assets/screenshots/browser-extensions.png" alt="browserextscrape"></p>
<p><strong>Review and edit your collected history.</strong></p>
<p><img src="https://lifescopelabs.github.io/assets/screenshots/browser-plugin-screenshot.png" alt="browserext"></p>
<h2 id="data-collection-sources">Data Collection Sources</h2>
<table>
<thead>
<tr>
<th>Data Source</th>
<th>Status</th>
<th>Data Collected</th>
</tr>
</thead>
<tbody>
<tr>
<td>URL History</td>
<td>beta</td>
<td>events, content</td>
</tr>
<tr>
<td>Location History</td>
<td>development</td>
<td>locations</td>
</tr>
<tr>
<td><strong>Scrape</strong> Netflix</td>
<td>planned</td>
<td>events, content</td>
</tr>
<tr>
<td><strong>Scrape</strong> Hulu</td>
<td>planned</td>
<td>events, content</td>
</tr>
<tr>
<td><strong>Scrape</strong> Amazon Prime</td>
<td>planned</td>
<td>events, content</td>
</tr>
<tr>
<td><strong>Scrape</strong> HBO GO</td>
<td>planned</td>
<td>events, content</td>
</tr>
<tr>
<td><strong>Scrape</strong> YouTube</td>
<td>planned</td>
<td>events, content</td>
</tr>
</tbody>
</table><h2 id="developer-setup">Developer Setup</h2>
<ol>
<li>Clone this repo</li>
<li>Install the repo’s directory as an extension</li>
</ol>
</div>
</div>
</body>
</html>