Skip to content

Commit 49619c7

Browse files
authored
Merge pull request #4 from SEPIA-Framework/dev
v0.6.2 - exclude localhost and pages with SEPIA path when showing nav-bar
2 parents d18bd34 + 895de3f commit 49619c7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Browser extensions that add additional features when using SEPIA in browser kiosk-mode etc.
33

44
## Chromium
5-
This extension adds a navigation bar (intended to be used in kiosk-mode where the close-tab button is missing) and makes the user-agent editable to e.g. load sites as mobile version (for small touch-screens).
5+
This extension adds a navigation bar for non-localhost pages (intended to be used in kiosk-mode where the close-tab button is missing) and makes the user-agent editable to e.g. load sites as mobile version (for small touch-screens).
66

77
[SEPIA @ Chrome Web Store](https://chrome.google.com/webstore/detail/sepia-framework-tools/gbdjpbipoaacccffgemiflnhfldahopp)
88

chromium/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SEPIA is an open-source, digital voice-assistant that runs on your own server, e
33
This extensions simply adds 2 additional functions to better handle kiosk mode apps:
44

55
- Switch the user-agent to Chrome mobile or any custom string
6-
- Show/hide an additional navigation bar overlay to close tabs
6+
- Show/hide an additional navigation bar overlay (excluding localhost and SEPIA paths) to close tabs
77

88
More functions might be added over time as needed ;-)
99

chromium/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "S.E.P.I.A. Framework Tools",
33
"short_name": "SEPIA Tools",
4-
"version": "0.6.1",
4+
"version": "0.6.2",
55
"author": "Bytemind.de",
66
"homepage_url": "https://sepia-framework.github.io/",
77
"description": "Browser tools for SEPIA open-source, voice-assistant framework.",
@@ -18,7 +18,7 @@
1818
},
1919
"content_scripts": [{
2020
"matches": ["<all_urls>"],
21-
"exclude_matches": ["https://sepia-framework.github.io/*"],
21+
"exclude_matches": ["https://sepia-framework.github.io/*", "*://localhost:*/*", "*://127.0.0.1:*/*", "*://*/sepia/assist/*", "*://*.local/*"],
2222
"run_at": "document_end",
2323
"js": ["navbar.js"],
2424
"css": ["navbar.css"]

0 commit comments

Comments
 (0)