├── LICENSE ├── README.md ├── bomViewer ├── bomViewer.js ├── fancytree │ ├── MIT-LICENSE.txt │ ├── jquery.fancytree-all.js │ ├── jquery.fancytree-custom.min.js │ ├── jquery.fancytree.js │ ├── jquery.fancytree.min.js │ ├── skin-awesome │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-bootstrap │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-lion │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-themeroller │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-vista │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-win7 │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-win8-xxl │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-win8 │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ └── ui.fancytree.min.css │ ├── skin-xp │ │ ├── icons-rtl.gif │ │ ├── icons.gif │ │ ├── loading.gif │ │ ├── ui.fancytree.css │ │ ├── ui.fancytree.min.css │ │ ├── vline-rtl.gif │ │ └── vline.gif │ └── src │ │ ├── jquery.fancytree.childcounter.js │ │ ├── jquery.fancytree.clones.js │ │ ├── jquery.fancytree.columnview.js │ │ ├── jquery.fancytree.debug.js │ │ ├── jquery.fancytree.dnd.js │ │ ├── jquery.fancytree.edit.js │ │ ├── jquery.fancytree.filter.js │ │ ├── jquery.fancytree.glyph.js │ │ ├── jquery.fancytree.gridnav.js │ │ ├── jquery.fancytree.js │ │ ├── jquery.fancytree.menu.js │ │ ├── jquery.fancytree.persist.js │ │ ├── jquery.fancytree.table.js │ │ ├── jquery.fancytree.themeroller.js │ │ └── jquery.fancytree.wide.js ├── images │ ├── ClassIcon.png │ ├── Function_8941.png │ ├── PropertyIcon.png │ ├── bitcoindonate.png │ └── icon64.png ├── index.css └── index.html ├── css └── popup.css ├── html └── popup.html ├── images ├── bitcoindonate.png ├── icon128.png ├── icon16.png ├── icon19.png ├── icon32.png ├── icon48.png └── icon64.png ├── js ├── background.js ├── bomOverload.js ├── injectScripts.js ├── popup.js ├── scriptCleanup.js ├── settings.js └── versionSanitizer.js ├── manifest.json └── test.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/README.md -------------------------------------------------------------------------------- /bomViewer/bomViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/bomViewer.js -------------------------------------------------------------------------------- /bomViewer/fancytree/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/MIT-LICENSE.txt -------------------------------------------------------------------------------- /bomViewer/fancytree/jquery.fancytree-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/jquery.fancytree-all.js -------------------------------------------------------------------------------- /bomViewer/fancytree/jquery.fancytree-custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/jquery.fancytree-custom.min.js -------------------------------------------------------------------------------- /bomViewer/fancytree/jquery.fancytree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/jquery.fancytree.js -------------------------------------------------------------------------------- /bomViewer/fancytree/jquery.fancytree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/jquery.fancytree.min.js -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-awesome/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-awesome/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-awesome/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-awesome/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-bootstrap/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-bootstrap/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-bootstrap/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-bootstrap/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-lion/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-lion/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-lion/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-lion/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-lion/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-lion/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-lion/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-lion/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-themeroller/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-themeroller/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-themeroller/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-themeroller/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-themeroller/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-themeroller/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-themeroller/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-themeroller/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-vista/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-vista/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-vista/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-vista/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-vista/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-vista/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-vista/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-vista/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win7/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win7/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win7/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win7/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win7/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win7/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win7/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win7/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8-xxl/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8-xxl/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8-xxl/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8-xxl/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8-xxl/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8-xxl/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8-xxl/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8-xxl/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-win8/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-win8/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/icons-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/icons-rtl.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/icons.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/loading.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/ui.fancytree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/ui.fancytree.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/ui.fancytree.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/ui.fancytree.min.css -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/vline-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/vline-rtl.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/skin-xp/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/skin-xp/vline.gif -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.childcounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.childcounter.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.clones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.clones.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.columnview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.columnview.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.debug.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.dnd.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.edit.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.filter.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.glyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.glyph.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.gridnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.gridnav.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.menu.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.persist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.persist.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.table.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.themeroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.themeroller.js -------------------------------------------------------------------------------- /bomViewer/fancytree/src/jquery.fancytree.wide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/fancytree/src/jquery.fancytree.wide.js -------------------------------------------------------------------------------- /bomViewer/images/ClassIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/images/ClassIcon.png -------------------------------------------------------------------------------- /bomViewer/images/Function_8941.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/images/Function_8941.png -------------------------------------------------------------------------------- /bomViewer/images/PropertyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/images/PropertyIcon.png -------------------------------------------------------------------------------- /bomViewer/images/bitcoindonate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/images/bitcoindonate.png -------------------------------------------------------------------------------- /bomViewer/images/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/images/icon64.png -------------------------------------------------------------------------------- /bomViewer/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/index.css -------------------------------------------------------------------------------- /bomViewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/bomViewer/index.html -------------------------------------------------------------------------------- /css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/css/popup.css -------------------------------------------------------------------------------- /html/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/html/popup.html -------------------------------------------------------------------------------- /images/bitcoindonate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/bitcoindonate.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/icon128.png -------------------------------------------------------------------------------- /images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/icon16.png -------------------------------------------------------------------------------- /images/icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/icon19.png -------------------------------------------------------------------------------- /images/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/icon32.png -------------------------------------------------------------------------------- /images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/icon48.png -------------------------------------------------------------------------------- /images/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/images/icon64.png -------------------------------------------------------------------------------- /js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/background.js -------------------------------------------------------------------------------- /js/bomOverload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/bomOverload.js -------------------------------------------------------------------------------- /js/injectScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/injectScripts.js -------------------------------------------------------------------------------- /js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/popup.js -------------------------------------------------------------------------------- /js/scriptCleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/scriptCleanup.js -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/settings.js -------------------------------------------------------------------------------- /js/versionSanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/js/versionSanitizer.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/manifest.json -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsclary/RubberGlove/HEAD/test.html --------------------------------------------------------------------------------