Skip to content

Commit

Permalink
Merge pull request #4 from SEPIA-Framework/dev
Browse files Browse the repository at this point in the history
v0.6.2 - exclude localhost and pages with SEPIA path when showing nav-bar
  • Loading branch information
fquirin committed Jul 6, 2019
2 parents d18bd34 + 895de3f commit 49619c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Browser extensions that add additional features when using SEPIA in browser kiosk-mode etc.

## Chromium
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).
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).

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

Expand Down
2 changes: 1 addition & 1 deletion chromium/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SEPIA is an open-source, digital voice-assistant that runs on your own server, e
This extensions simply adds 2 additional functions to better handle kiosk mode apps:

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

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

Expand Down
4 changes: 2 additions & 2 deletions chromium/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "S.E.P.I.A. Framework Tools",
"short_name": "SEPIA Tools",
"version": "0.6.1",
"version": "0.6.2",
"author": "Bytemind.de",
"homepage_url": "https://sepia-framework.github.io/",
"description": "Browser tools for SEPIA open-source, voice-assistant framework.",
Expand All @@ -18,7 +18,7 @@
},
"content_scripts": [{
"matches": ["<all_urls>"],
"exclude_matches": ["https://sepia-framework.github.io/*"],
"exclude_matches": ["https://sepia-framework.github.io/*", "*://localhost:*/*", "*://127.0.0.1:*/*", "*://*/sepia/assist/*", "*://*.local/*"],
"run_at": "document_end",
"js": ["navbar.js"],
"css": ["navbar.css"]
Expand Down

0 comments on commit 49619c7

Please sign in to comment.