├── .gitattributes ├── .gitignore ├── BACKGROUND_REFACTOR_CN.md ├── CONTEXT_MENU_FIX.md ├── EXTRACTION_DETAILS.md ├── MV3_FINAL_FIXES.md ├── MV3_FIXES_ROUND2.md ├── MV3_ISSUES_FIXED.md ├── MV3_MIGRATION_GUIDE.md ├── MV3_MIGRATION_STATUS.md ├── MV3_QUICK_START.md ├── PHASE_2_3_SUMMARY.md ├── README.md ├── REFACTORING_NOTES.md ├── TEST_ISSUES_RESOLVED.md ├── UPDATE_SUMMARY.md ├── chrome ├── License.txt ├── _locales │ ├── en │ │ └── messages.json │ └── zh_CN │ │ └── messages.json ├── background.html ├── bookmark.html ├── closed.html ├── css │ ├── history-rtl.css │ ├── history.css │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── line_conn.gif │ │ ├── loading.gif │ │ ├── zTreeStandard.gif │ │ └── zTreeStandard.png │ ├── options-rtl.css │ ├── options.css │ ├── popup-rtl.css │ ├── popup.css │ └── zTreeStyle.css ├── history.html ├── history2.html ├── images │ ├── Browser-icon-vector-03.svg │ ├── Extension-icon-vector-03.svg │ ├── Extension-icon-vector-04.svg │ ├── alert-bg.png │ ├── bg.gif │ ├── blank.png │ ├── btn_donate_LG.gif │ ├── check.png │ ├── close.gif │ ├── cog.png │ ├── cross.png │ ├── deleting.gif │ ├── drtb-@2x.png │ ├── drtb.png │ ├── edit-items.gif │ ├── group-toggle-@2x.png │ ├── group-toggle.png │ ├── handle-bg-@2x.png │ ├── handle-bg.png │ ├── help-@2x.png │ ├── help.png │ ├── icon128-blank.png │ ├── icon16-other.png │ ├── icon19-arrow.png │ ├── icon19-arrowbox.png │ ├── icon19-blank.png │ ├── icon19-circle-@2x.png │ ├── icon19-circle.png │ ├── icon19-down.png │ ├── icon19-edge.png │ ├── icon19-neat.png │ ├── icon19-other.png │ ├── icon19-pink-@2x.png │ ├── icon19-pink.png │ ├── icon19.png │ ├── icon32-blank.png │ ├── icon38-blank.png │ ├── icon48-blank.png │ ├── iconmonstr-file-3.svg │ ├── iconmonstr-script-6.svg │ ├── legend-@2x.gif │ ├── legend.gif │ ├── loading-bg.png │ ├── loading.gif │ ├── logo.png │ ├── main-icon128.png │ ├── main-icon19.png │ ├── main-icon32.png │ ├── main-icon38.png │ ├── main-icon48.png │ ├── move-@2x.png │ ├── move.png │ ├── options-bg.gif │ ├── order-toggle-@2x.png │ ├── order-toggle.png │ ├── orderby-toggle-@2x.png │ ├── orderby-toggle.png │ ├── pin-grey.png │ ├── pin.png │ ├── preview-icon.gif │ ├── remove.png │ ├── rh-popup-options-@2x.png │ ├── rh-popup-options.png │ ├── rhtitle-bg.gif │ ├── save-bg.gif │ ├── scrollbar-down-active.gif │ ├── scrollbar-down.gif │ ├── scrollbar-handle-active.gif │ ├── scrollbar-handle.gif │ ├── scrollbar-up-active.gif │ ├── scrollbar-up.gif │ ├── search.gif │ ├── seperator.gif │ ├── share-bg.png │ ├── slider-bg.gif │ ├── star-grey.png │ ├── star.png │ ├── tab-about.png │ ├── tab-bg.gif │ ├── tab-changelog.png │ ├── tab-options.png │ ├── tab-translations.png │ ├── tab-twitter.png │ ├── toggle-@2x.png │ ├── toggle.png │ ├── toggle2-@2x.png │ ├── toggle2.png │ ├── tree-128.png │ ├── tree-16.png │ ├── tree-19.png │ ├── tree-32.png │ ├── tree-38.png │ ├── tree-48.png │ ├── tree.png │ ├── ui-delete.png │ ├── ui-pin.png │ └── ui-share.png ├── manifest.json ├── options.html ├── popup.html └── scripts │ ├── background-sw.js │ ├── background-utils.js │ ├── background.js │ ├── bookmark.js │ ├── closed.js │ ├── db-manager.js │ ├── func.js │ ├── fuzzysearch.js │ ├── history-rtl.js │ ├── history.js │ ├── history2.js │ ├── jquery-1.4.4.min.js │ ├── jquery-3.6.0.min.js │ ├── jquery.ztree.core.js │ ├── jquery.ztree.exhide.js │ ├── message-adapter.js │ ├── moo.js │ ├── options-rtl.js │ ├── options.js │ ├── popup-rtl.js │ ├── popup.js │ └── storage-adapter.js ├── screen.jpg └── test-background-refactor.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/.gitignore -------------------------------------------------------------------------------- /BACKGROUND_REFACTOR_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/BACKGROUND_REFACTOR_CN.md -------------------------------------------------------------------------------- /CONTEXT_MENU_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/CONTEXT_MENU_FIX.md -------------------------------------------------------------------------------- /EXTRACTION_DETAILS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/EXTRACTION_DETAILS.md -------------------------------------------------------------------------------- /MV3_FINAL_FIXES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/MV3_FINAL_FIXES.md -------------------------------------------------------------------------------- /MV3_FIXES_ROUND2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/MV3_FIXES_ROUND2.md -------------------------------------------------------------------------------- /MV3_ISSUES_FIXED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/MV3_ISSUES_FIXED.md -------------------------------------------------------------------------------- /MV3_MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/MV3_MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /MV3_MIGRATION_STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/MV3_MIGRATION_STATUS.md -------------------------------------------------------------------------------- /MV3_QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/MV3_QUICK_START.md -------------------------------------------------------------------------------- /PHASE_2_3_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/PHASE_2_3_SUMMARY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/README.md -------------------------------------------------------------------------------- /REFACTORING_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/REFACTORING_NOTES.md -------------------------------------------------------------------------------- /TEST_ISSUES_RESOLVED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/TEST_ISSUES_RESOLVED.md -------------------------------------------------------------------------------- /UPDATE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/UPDATE_SUMMARY.md -------------------------------------------------------------------------------- /chrome/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/License.txt -------------------------------------------------------------------------------- /chrome/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/_locales/en/messages.json -------------------------------------------------------------------------------- /chrome/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /chrome/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/background.html -------------------------------------------------------------------------------- /chrome/bookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/bookmark.html -------------------------------------------------------------------------------- /chrome/closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/closed.html -------------------------------------------------------------------------------- /chrome/css/history-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/history-rtl.css -------------------------------------------------------------------------------- /chrome/css/history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/history.css -------------------------------------------------------------------------------- /chrome/css/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/1_close.png -------------------------------------------------------------------------------- /chrome/css/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/1_open.png -------------------------------------------------------------------------------- /chrome/css/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/2.png -------------------------------------------------------------------------------- /chrome/css/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/3.png -------------------------------------------------------------------------------- /chrome/css/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/4.png -------------------------------------------------------------------------------- /chrome/css/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/5.png -------------------------------------------------------------------------------- /chrome/css/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/6.png -------------------------------------------------------------------------------- /chrome/css/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/7.png -------------------------------------------------------------------------------- /chrome/css/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/8.png -------------------------------------------------------------------------------- /chrome/css/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/diy/9.png -------------------------------------------------------------------------------- /chrome/css/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/line_conn.gif -------------------------------------------------------------------------------- /chrome/css/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/loading.gif -------------------------------------------------------------------------------- /chrome/css/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/zTreeStandard.gif -------------------------------------------------------------------------------- /chrome/css/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/img/zTreeStandard.png -------------------------------------------------------------------------------- /chrome/css/options-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/options-rtl.css -------------------------------------------------------------------------------- /chrome/css/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/options.css -------------------------------------------------------------------------------- /chrome/css/popup-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/popup-rtl.css -------------------------------------------------------------------------------- /chrome/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/popup.css -------------------------------------------------------------------------------- /chrome/css/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/css/zTreeStyle.css -------------------------------------------------------------------------------- /chrome/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/history.html -------------------------------------------------------------------------------- /chrome/history2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/history2.html -------------------------------------------------------------------------------- /chrome/images/Browser-icon-vector-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/Browser-icon-vector-03.svg -------------------------------------------------------------------------------- /chrome/images/Extension-icon-vector-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/Extension-icon-vector-03.svg -------------------------------------------------------------------------------- /chrome/images/Extension-icon-vector-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/Extension-icon-vector-04.svg -------------------------------------------------------------------------------- /chrome/images/alert-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/alert-bg.png -------------------------------------------------------------------------------- /chrome/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/bg.gif -------------------------------------------------------------------------------- /chrome/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/blank.png -------------------------------------------------------------------------------- /chrome/images/btn_donate_LG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/btn_donate_LG.gif -------------------------------------------------------------------------------- /chrome/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/check.png -------------------------------------------------------------------------------- /chrome/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/close.gif -------------------------------------------------------------------------------- /chrome/images/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/cog.png -------------------------------------------------------------------------------- /chrome/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/cross.png -------------------------------------------------------------------------------- /chrome/images/deleting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/deleting.gif -------------------------------------------------------------------------------- /chrome/images/drtb-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/drtb-@2x.png -------------------------------------------------------------------------------- /chrome/images/drtb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/drtb.png -------------------------------------------------------------------------------- /chrome/images/edit-items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/edit-items.gif -------------------------------------------------------------------------------- /chrome/images/group-toggle-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/group-toggle-@2x.png -------------------------------------------------------------------------------- /chrome/images/group-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/group-toggle.png -------------------------------------------------------------------------------- /chrome/images/handle-bg-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/handle-bg-@2x.png -------------------------------------------------------------------------------- /chrome/images/handle-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/handle-bg.png -------------------------------------------------------------------------------- /chrome/images/help-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/help-@2x.png -------------------------------------------------------------------------------- /chrome/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/help.png -------------------------------------------------------------------------------- /chrome/images/icon128-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon128-blank.png -------------------------------------------------------------------------------- /chrome/images/icon16-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon16-other.png -------------------------------------------------------------------------------- /chrome/images/icon19-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-arrow.png -------------------------------------------------------------------------------- /chrome/images/icon19-arrowbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-arrowbox.png -------------------------------------------------------------------------------- /chrome/images/icon19-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-blank.png -------------------------------------------------------------------------------- /chrome/images/icon19-circle-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-circle-@2x.png -------------------------------------------------------------------------------- /chrome/images/icon19-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-circle.png -------------------------------------------------------------------------------- /chrome/images/icon19-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-down.png -------------------------------------------------------------------------------- /chrome/images/icon19-edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-edge.png -------------------------------------------------------------------------------- /chrome/images/icon19-neat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-neat.png -------------------------------------------------------------------------------- /chrome/images/icon19-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-other.png -------------------------------------------------------------------------------- /chrome/images/icon19-pink-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-pink-@2x.png -------------------------------------------------------------------------------- /chrome/images/icon19-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19-pink.png -------------------------------------------------------------------------------- /chrome/images/icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon19.png -------------------------------------------------------------------------------- /chrome/images/icon32-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon32-blank.png -------------------------------------------------------------------------------- /chrome/images/icon38-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon38-blank.png -------------------------------------------------------------------------------- /chrome/images/icon48-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/icon48-blank.png -------------------------------------------------------------------------------- /chrome/images/iconmonstr-file-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/iconmonstr-file-3.svg -------------------------------------------------------------------------------- /chrome/images/iconmonstr-script-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/iconmonstr-script-6.svg -------------------------------------------------------------------------------- /chrome/images/legend-@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/legend-@2x.gif -------------------------------------------------------------------------------- /chrome/images/legend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/legend.gif -------------------------------------------------------------------------------- /chrome/images/loading-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/loading-bg.png -------------------------------------------------------------------------------- /chrome/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/loading.gif -------------------------------------------------------------------------------- /chrome/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/logo.png -------------------------------------------------------------------------------- /chrome/images/main-icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/main-icon128.png -------------------------------------------------------------------------------- /chrome/images/main-icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/main-icon19.png -------------------------------------------------------------------------------- /chrome/images/main-icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/main-icon32.png -------------------------------------------------------------------------------- /chrome/images/main-icon38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/main-icon38.png -------------------------------------------------------------------------------- /chrome/images/main-icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/main-icon48.png -------------------------------------------------------------------------------- /chrome/images/move-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/move-@2x.png -------------------------------------------------------------------------------- /chrome/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/move.png -------------------------------------------------------------------------------- /chrome/images/options-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/options-bg.gif -------------------------------------------------------------------------------- /chrome/images/order-toggle-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/order-toggle-@2x.png -------------------------------------------------------------------------------- /chrome/images/order-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/order-toggle.png -------------------------------------------------------------------------------- /chrome/images/orderby-toggle-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/orderby-toggle-@2x.png -------------------------------------------------------------------------------- /chrome/images/orderby-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/orderby-toggle.png -------------------------------------------------------------------------------- /chrome/images/pin-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/pin-grey.png -------------------------------------------------------------------------------- /chrome/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/pin.png -------------------------------------------------------------------------------- /chrome/images/preview-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/preview-icon.gif -------------------------------------------------------------------------------- /chrome/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/remove.png -------------------------------------------------------------------------------- /chrome/images/rh-popup-options-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/rh-popup-options-@2x.png -------------------------------------------------------------------------------- /chrome/images/rh-popup-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/rh-popup-options.png -------------------------------------------------------------------------------- /chrome/images/rhtitle-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/rhtitle-bg.gif -------------------------------------------------------------------------------- /chrome/images/save-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/save-bg.gif -------------------------------------------------------------------------------- /chrome/images/scrollbar-down-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/scrollbar-down-active.gif -------------------------------------------------------------------------------- /chrome/images/scrollbar-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/scrollbar-down.gif -------------------------------------------------------------------------------- /chrome/images/scrollbar-handle-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/scrollbar-handle-active.gif -------------------------------------------------------------------------------- /chrome/images/scrollbar-handle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/scrollbar-handle.gif -------------------------------------------------------------------------------- /chrome/images/scrollbar-up-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/scrollbar-up-active.gif -------------------------------------------------------------------------------- /chrome/images/scrollbar-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/scrollbar-up.gif -------------------------------------------------------------------------------- /chrome/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/search.gif -------------------------------------------------------------------------------- /chrome/images/seperator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/seperator.gif -------------------------------------------------------------------------------- /chrome/images/share-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/share-bg.png -------------------------------------------------------------------------------- /chrome/images/slider-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/slider-bg.gif -------------------------------------------------------------------------------- /chrome/images/star-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/star-grey.png -------------------------------------------------------------------------------- /chrome/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/star.png -------------------------------------------------------------------------------- /chrome/images/tab-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tab-about.png -------------------------------------------------------------------------------- /chrome/images/tab-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tab-bg.gif -------------------------------------------------------------------------------- /chrome/images/tab-changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tab-changelog.png -------------------------------------------------------------------------------- /chrome/images/tab-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tab-options.png -------------------------------------------------------------------------------- /chrome/images/tab-translations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tab-translations.png -------------------------------------------------------------------------------- /chrome/images/tab-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tab-twitter.png -------------------------------------------------------------------------------- /chrome/images/toggle-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/toggle-@2x.png -------------------------------------------------------------------------------- /chrome/images/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/toggle.png -------------------------------------------------------------------------------- /chrome/images/toggle2-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/toggle2-@2x.png -------------------------------------------------------------------------------- /chrome/images/toggle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/toggle2.png -------------------------------------------------------------------------------- /chrome/images/tree-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree-128.png -------------------------------------------------------------------------------- /chrome/images/tree-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree-16.png -------------------------------------------------------------------------------- /chrome/images/tree-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree-19.png -------------------------------------------------------------------------------- /chrome/images/tree-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree-32.png -------------------------------------------------------------------------------- /chrome/images/tree-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree-38.png -------------------------------------------------------------------------------- /chrome/images/tree-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree-48.png -------------------------------------------------------------------------------- /chrome/images/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/tree.png -------------------------------------------------------------------------------- /chrome/images/ui-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/ui-delete.png -------------------------------------------------------------------------------- /chrome/images/ui-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/ui-pin.png -------------------------------------------------------------------------------- /chrome/images/ui-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/images/ui-share.png -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /chrome/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/options.html -------------------------------------------------------------------------------- /chrome/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/popup.html -------------------------------------------------------------------------------- /chrome/scripts/background-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/background-sw.js -------------------------------------------------------------------------------- /chrome/scripts/background-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/background-utils.js -------------------------------------------------------------------------------- /chrome/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/background.js -------------------------------------------------------------------------------- /chrome/scripts/bookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/bookmark.js -------------------------------------------------------------------------------- /chrome/scripts/closed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/closed.js -------------------------------------------------------------------------------- /chrome/scripts/db-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/db-manager.js -------------------------------------------------------------------------------- /chrome/scripts/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/func.js -------------------------------------------------------------------------------- /chrome/scripts/fuzzysearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/fuzzysearch.js -------------------------------------------------------------------------------- /chrome/scripts/history-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/history-rtl.js -------------------------------------------------------------------------------- /chrome/scripts/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/history.js -------------------------------------------------------------------------------- /chrome/scripts/history2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/history2.js -------------------------------------------------------------------------------- /chrome/scripts/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /chrome/scripts/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /chrome/scripts/jquery.ztree.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/jquery.ztree.core.js -------------------------------------------------------------------------------- /chrome/scripts/jquery.ztree.exhide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/jquery.ztree.exhide.js -------------------------------------------------------------------------------- /chrome/scripts/message-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/message-adapter.js -------------------------------------------------------------------------------- /chrome/scripts/moo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/moo.js -------------------------------------------------------------------------------- /chrome/scripts/options-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/options-rtl.js -------------------------------------------------------------------------------- /chrome/scripts/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/options.js -------------------------------------------------------------------------------- /chrome/scripts/popup-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/popup-rtl.js -------------------------------------------------------------------------------- /chrome/scripts/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/popup.js -------------------------------------------------------------------------------- /chrome/scripts/storage-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/chrome/scripts/storage-adapter.js -------------------------------------------------------------------------------- /screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/screen.jpg -------------------------------------------------------------------------------- /test-background-refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tumuyan/Tree-Style-History/HEAD/test-background-refactor.md --------------------------------------------------------------------------------