You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Click the Load unpacked extension button. A file dialog appears.
6
+
- In the file dialog, navigate to WebPageDiff and click OK.
7
+
- Click on `_generated_background_page.html`. Welcome to a REPL.
8
+
- Visit a page in a new tab.
9
+
- Find the green puzzle browser action button.
10
+
- Click on it. With any luck, the html for the page will show up in the log.
11
+
12
+
# Interesting Chrome Extension Docs
13
+
14
+
[Overview](http://developer.chrome.com/extensions/overview.html) of the technology.
15
+
Set things up in the [Manifest File](http://developer.chrome.com/extensions/manifest.html).
16
+
Click on a Browser Action Button to add a page to Web Page Diff.
17
+
[Background Pages](http://developer.chrome.com/extensions/background_pages.html) serves as our worker process.
18
+
In the future we would use [Event Pages](http://developer.chrome.com/extensions/event_pages.html) but the periodic [alarms api](http://developer.chrome.com/extensions/alarms.html) "requires Google Chrome dev channel or newer".
19
+
[Content Scripts](http://developer.chrome.com/extensions/content_scripts.html) patch an already loaded page.
20
+
21
+
Look at the [Tutorial to Get Started](http://developer.chrome.com/extensions/getstarted.html). Follow with the [Debugging Tutorial](http://developer.chrome.com/extensions/tut_debugging.html).
22
+
23
+
Steal code from [Samples](http://developer.chrome.com/extensions/samples.html).
0 commit comments