We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55b482e commit ec7ebb6Copy full SHA for ec7ebb6
2 files changed
Resources/edge.json
@@ -0,0 +1,9 @@
1
+{
2
+ "name": "com.clear_code.print_canceler",
3
+ "description": "PrintCanceler Talk Serger",
4
+ "path": "PrintCancelerTalk.exe",
5
+ "type": "stdio",
6
+ "allowed_origins": [
7
+ "chrome-extension://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/"
8
+ ]
9
+}
webextensions/edge/background.js
@@ -1,3 +1,7 @@
+'use strict';
+const BROWSER = 'edge';
+const SERVER_NAME = 'com.clear_code.print_canceler';
+
chrome.scripting.registerContentScripts([{
id: 'print_canceler_main',
matches: ['<all_urls>'],
0 commit comments