forked from mohamedmansour/google-plus-extension-jsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.html
More file actions
15 lines (15 loc) · 748 Bytes
/
background.html
File metadata and controls
15 lines (15 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<script type="text/javascript" src="/libs/jquery-1.6.3.min.js"></script>
<script type="text/javascript" src="/jsapi/jsapi_helper.js"></script>
<script type="text/javascript" src="/jsapi/jsapi_abstract_database.js"></script>
<script type="text/javascript" src="/jsapi/jsapi_database.js"></script>
<script type="text/javascript" src="/jsapi/jsapi_for_google_plus.js"></script>
<script type="text/javascript" src="/content_script_api_bridge.js"></script>
<script type="text/javascript" src="/settings.js"></script>
<script type="text/javascript" src="/background_controller.js"></script>
<script type="text/javascript">
var backgroundController = new BackgroundController();
backgroundController.init();
</script>
</html>