49 |
├── .gitignore ├── images ├── Main menu.png ├── Searching example.png └── Highlighting example.png ├── src ├── content_scripts │ ├── main.js │ ├── remove_highlights.js │ └── page_search.js ├── options │ ├── options.css │ ├── options.html │ └── options.js ├── icons │ ├── RegexSearch-32.png │ ├── RegexSearch-48.png │ ├── RegexSearch-popup.png │ ├── RegexSearch.svg │ └── RegexSearch popup.svg ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── css │ ├── style.css │ └── bootstrap-theme.min.css ├── js │ ├── npm.js │ └── bootstrap.js ├── popup │ ├── RegexSearch.css │ ├── RegexSearch.html │ └── RegexSearch.js └── manifest.json ├── package.json ├── vite.contentscript.config.js ├── README.md ├── LICENSE ├── vite.config.js └── help.md /.gitignore: -------------------------------------------------------------------------------- 1 | /releases 2 | /web-ext-artifacts 3 | /build 4 | /node_modules 5 | 6 | -------------------------------------------------------------------------------- /images/Main menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/images/Main menu.png -------------------------------------------------------------------------------- /src/content_scripts/main.js: -------------------------------------------------------------------------------- 1 | import './page_search.js'; 2 | import './remove_highlights.js'; 3 | -------------------------------------------------------------------------------- /src/options/options.css: -------------------------------------------------------------------------------- 1 | html , body { 2 | background-color: inherit; 3 | font-size: 90%; 4 | } 5 | -------------------------------------------------------------------------------- /images/Searching example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/images/Searching example.png -------------------------------------------------------------------------------- /src/icons/RegexSearch-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/icons/RegexSearch-32.png -------------------------------------------------------------------------------- /src/icons/RegexSearch-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/icons/RegexSearch-48.png -------------------------------------------------------------------------------- /images/Highlighting example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/images/Highlighting example.png -------------------------------------------------------------------------------- /src/icons/RegexSearch-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/icons/RegexSearch-popup.png -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohd-PH/RegexSearch/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); 2 | .monospaced { 3 | font-family: 'Roboto Mono', monospace; 4 | } -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |