428eab6a95
Moved the capture icon into the URL bar (invisible until you visit a scrapable page. Currently just displays a Book, but will change to the correct item types in the future?)
25 lines
715 B
XML
Executable file
25 lines
715 B
XML
Executable file
<?xml version="1.0"?>
|
|
|
|
|
|
<!-- Note: Contains Firefox-specific overlay -->
|
|
|
|
<overlay id="scholar-ingester-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script src="../include.js"/>
|
|
|
|
<script src="browser.js"/>
|
|
|
|
<script type="application/x-javascript">
|
|
Scholar_Ingester_Interface.init();
|
|
</script>
|
|
|
|
<hbox id="urlbar-icons">
|
|
<image src="chrome://scholar/skin/treeitem-book.png" id="scholar-status-image" onclick="Scholar_Ingester_Interface.scrapeThisPage()" position="1" hidden="true"/>
|
|
</hbox>
|
|
|
|
<window id="main-window">
|
|
<box style="visibility: collapse">
|
|
<browser id="scholar-hidden-browser" />
|
|
</box>
|
|
</window>
|
|
</overlay>
|