├── .editorconfig ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .idea ├── SnapLinks3.iml ├── ant.xml ├── codeStyleSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── composerJson.xml ├── copyright │ ├── MIT.xml │ └── profiles_settings.xml ├── deployment.xml ├── dictionaries │ ├── Clint.xml │ └── cpriest.xml ├── encodings.xml ├── git_toolbox_prj.xml ├── inspectionProfiles │ ├── Project.xml │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── jsLinters │ ├── jshint.xml │ └── jslint.xml ├── markdown-exported-files.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── Github_Profile.xml ├── misc.xml ├── modules.xml ├── phing.xml ├── php.xml ├── scopes │ ├── Markdown_Files.xml │ └── scope_settings.xml ├── sqldialects.xml ├── templateLanguages.xml ├── typescript-compiler.xml ├── uiDesigner.xml ├── vcs.xml └── watcherTasks.xml ├── .webext-ff.js ├── DevNotes.md ├── History.md ├── LICENSE ├── README.md ├── SECURITY.md ├── dist ├── README.downloads ├── SnapLinks-3.0.0b2.zip ├── SnapLinks-3.0b1.xpi ├── SnapLinks-3.1.0.4.xpi ├── SnapLinks-3.1.0b1.xpi ├── SnapLinks-3.1.0b2.xpi ├── SnapLinks-3.1.0b3.xpi ├── SnapLinks-3.1.1.2.xpi ├── SnapLinks-3.1.1.3.xpi ├── SnapLinks-3.1.1b1.xpi └── snaplinksplus-2.4.3b3.xpi ├── docs ├── .nojekyll ├── Contributing.md ├── History.md ├── Links.md ├── README.md ├── Tutorial.md ├── Updated.md ├── _navbar.md ├── images │ ├── SnapLinksLogo.png │ └── octocat-icon.png ├── index.html ├── stylesheets │ └── stylesheet.css ├── updated.html └── welcome.html ├── eslint ├── globals.js ├── index.js └── rules.js ├── gulpfile.js ├── jest.config.js ├── package.json ├── res ├── Chrome16.png ├── FireFox16.png ├── Info16.png ├── Marketing │ ├── LassoCheckRadioBoxes.png │ ├── LassoLinks.png │ ├── Screenshot1.png │ └── Screenshot2.png ├── SnapLinksLogo128.png ├── SnapLinksLogo32.png ├── SnapLinksLogo48.png └── SnapLinksLogo64.png ├── secured.tzs ├── src ├── CSP.js ├── DeepProxy.js ├── JetBrains-Extensions.d.ts ├── JetBrains-Extensions.js ├── StoragePrefs.js ├── background-scripts │ ├── DevBuild.js │ └── background.js ├── content-scripts │ ├── ActionMgr.js │ ├── CategorizedCollection.js │ ├── DevBuild.js │ ├── ElementIndexer.js │ ├── EventHandler.js │ ├── SelectionRect.js │ ├── SvgOverlay.js │ └── Utility.js ├── globals.js ├── html │ └── options.html ├── lib │ ├── Configs.js │ └── Options.js ├── templates │ └── manifest.hbs └── types.d.ts ├── test ├── iframe_content.htm ├── iframe_iframe_content.htm ├── iframe_issue49.htm ├── issue308.htm ├── overlapped_range.html ├── test_links.html ├── triangle_down.gif └── triangle_right.gif └── tests ├── integration └── js-csp │ └── test.pubsub.js ├── test.DeepProxy.js ├── test.OpenProxy.js └── test.OverlayProxy.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/SnapLinks3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/SnapLinks3.iml -------------------------------------------------------------------------------- /.idea/ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/ant.xml -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/composerJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/composerJson.xml -------------------------------------------------------------------------------- /.idea/copyright/MIT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/copyright/MIT.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/dictionaries/Clint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/dictionaries/Clint.xml -------------------------------------------------------------------------------- /.idea/dictionaries/cpriest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/dictionaries/cpriest.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/git_toolbox_prj.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/inspectionProfiles/Project.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jshint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/jsLinters/jshint.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/jsLinters/jslint.xml -------------------------------------------------------------------------------- /.idea/markdown-exported-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/markdown-exported-files.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/Github_Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/markdown-navigator/Github_Profile.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/phing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/phing.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/scopes/Markdown_Files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/scopes/Markdown_Files.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/sqldialects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/sqldialects.xml -------------------------------------------------------------------------------- /.idea/templateLanguages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/templateLanguages.xml -------------------------------------------------------------------------------- /.idea/typescript-compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/typescript-compiler.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.webext-ff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/.webext-ff.js -------------------------------------------------------------------------------- /DevNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/DevNotes.md -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- 1 | docs/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dist/README.downloads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/README.downloads -------------------------------------------------------------------------------- /dist/SnapLinks-3.0.0b2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.0.0b2.zip -------------------------------------------------------------------------------- /dist/SnapLinks-3.0b1.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.0b1.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.0.4.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.0.4.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.0b1.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.0b1.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.0b2.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.0b2.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.0b3.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.0b3.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.1.2.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.1.2.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.1.3.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.1.3.xpi -------------------------------------------------------------------------------- /dist/SnapLinks-3.1.1b1.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/SnapLinks-3.1.1b1.xpi -------------------------------------------------------------------------------- /dist/snaplinksplus-2.4.3b3.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/dist/snaplinksplus-2.4.3b3.xpi -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/Contributing.md -------------------------------------------------------------------------------- /docs/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/History.md -------------------------------------------------------------------------------- /docs/Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/Links.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/Tutorial.md -------------------------------------------------------------------------------- /docs/Updated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/Updated.md -------------------------------------------------------------------------------- /docs/_navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/_navbar.md -------------------------------------------------------------------------------- /docs/images/SnapLinksLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/images/SnapLinksLogo.png -------------------------------------------------------------------------------- /docs/images/octocat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/images/octocat-icon.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /docs/updated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/updated.html -------------------------------------------------------------------------------- /docs/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/docs/welcome.html -------------------------------------------------------------------------------- /eslint/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/eslint/globals.js -------------------------------------------------------------------------------- /eslint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/eslint/index.js -------------------------------------------------------------------------------- /eslint/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/eslint/rules.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/package.json -------------------------------------------------------------------------------- /res/Chrome16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/Chrome16.png -------------------------------------------------------------------------------- /res/FireFox16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/FireFox16.png -------------------------------------------------------------------------------- /res/Info16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/Info16.png -------------------------------------------------------------------------------- /res/Marketing/LassoCheckRadioBoxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/Marketing/LassoCheckRadioBoxes.png -------------------------------------------------------------------------------- /res/Marketing/LassoLinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/Marketing/LassoLinks.png -------------------------------------------------------------------------------- /res/Marketing/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/Marketing/Screenshot1.png -------------------------------------------------------------------------------- /res/Marketing/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/Marketing/Screenshot2.png -------------------------------------------------------------------------------- /res/SnapLinksLogo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/SnapLinksLogo128.png -------------------------------------------------------------------------------- /res/SnapLinksLogo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/SnapLinksLogo32.png -------------------------------------------------------------------------------- /res/SnapLinksLogo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/SnapLinksLogo48.png -------------------------------------------------------------------------------- /res/SnapLinksLogo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/res/SnapLinksLogo64.png -------------------------------------------------------------------------------- /secured.tzs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/secured.tzs -------------------------------------------------------------------------------- /src/CSP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/CSP.js -------------------------------------------------------------------------------- /src/DeepProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/DeepProxy.js -------------------------------------------------------------------------------- /src/JetBrains-Extensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/JetBrains-Extensions.d.ts -------------------------------------------------------------------------------- /src/JetBrains-Extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/JetBrains-Extensions.js -------------------------------------------------------------------------------- /src/StoragePrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/StoragePrefs.js -------------------------------------------------------------------------------- /src/background-scripts/DevBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/background-scripts/DevBuild.js -------------------------------------------------------------------------------- /src/background-scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/background-scripts/background.js -------------------------------------------------------------------------------- /src/content-scripts/ActionMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/ActionMgr.js -------------------------------------------------------------------------------- /src/content-scripts/CategorizedCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/CategorizedCollection.js -------------------------------------------------------------------------------- /src/content-scripts/DevBuild.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | -------------------------------------------------------------------------------- /src/content-scripts/ElementIndexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/ElementIndexer.js -------------------------------------------------------------------------------- /src/content-scripts/EventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/EventHandler.js -------------------------------------------------------------------------------- /src/content-scripts/SelectionRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/SelectionRect.js -------------------------------------------------------------------------------- /src/content-scripts/SvgOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/SvgOverlay.js -------------------------------------------------------------------------------- /src/content-scripts/Utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/content-scripts/Utility.js -------------------------------------------------------------------------------- /src/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/globals.js -------------------------------------------------------------------------------- /src/html/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/html/options.html -------------------------------------------------------------------------------- /src/lib/Configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/lib/Configs.js -------------------------------------------------------------------------------- /src/lib/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/lib/Options.js -------------------------------------------------------------------------------- /src/templates/manifest.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/templates/manifest.hbs -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /test/iframe_content.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/iframe_content.htm -------------------------------------------------------------------------------- /test/iframe_iframe_content.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/iframe_iframe_content.htm -------------------------------------------------------------------------------- /test/iframe_issue49.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/iframe_issue49.htm -------------------------------------------------------------------------------- /test/issue308.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/issue308.htm -------------------------------------------------------------------------------- /test/overlapped_range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/overlapped_range.html -------------------------------------------------------------------------------- /test/test_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/test_links.html -------------------------------------------------------------------------------- /test/triangle_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/triangle_down.gif -------------------------------------------------------------------------------- /test/triangle_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/test/triangle_right.gif -------------------------------------------------------------------------------- /tests/integration/js-csp/test.pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/tests/integration/js-csp/test.pubsub.js -------------------------------------------------------------------------------- /tests/test.DeepProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/tests/test.DeepProxy.js -------------------------------------------------------------------------------- /tests/test.OpenProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/tests/test.OpenProxy.js -------------------------------------------------------------------------------- /tests/test.OverlayProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpriest/SnapLinksPlus/HEAD/tests/test.OverlayProxy.js --------------------------------------------------------------------------------