Skip to content

Commit 2c409df

Browse files
committed
Added support for microsoft edge
1 parent 8b4f476 commit 2c409df

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

AutotypeURL.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
buildSettings = {
321321
CODE_SIGN_STYLE = Manual;
322322
COMBINE_HIDPI_IMAGES = YES;
323-
CURRENT_PROJECT_VERSION = 1.1;
323+
CURRENT_PROJECT_VERSION = 1.2;
324324
DEPLOYMENT_LOCATION = YES;
325325
DEVELOPMENT_TEAM = "";
326326
DSTROOT = "$(HOME)";
@@ -339,7 +339,7 @@
339339
buildSettings = {
340340
CODE_SIGN_STYLE = Manual;
341341
COMBINE_HIDPI_IMAGES = YES;
342-
CURRENT_PROJECT_VERSION = 1.1;
342+
CURRENT_PROJECT_VERSION = 1.2;
343343
DEPLOYMENT_LOCATION = YES;
344344
DEVELOPMENT_TEAM = "";
345345
DSTROOT = "$(HOME)";

AutotypeURL/ATUChromeExtractor.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111

1212
static NSString *ATUChromeBundleIdentifier = @"com.google.Chrome";
1313
static NSString *ATUBraveBundleIdentifier = @"com.brave.Browser";
14+
static NSString *ATUEdgeBundleIdentifier = @"com.microsoft.edgemac";
1415

1516
@implementation ATUChromeExtractor
1617

1718
- (NSArray<NSString *> *)supportedBundleIdentifiers {
18-
return @[ATUChromeBundleIdentifier, ATUBraveBundleIdentifier];
19+
return @[ATUChromeBundleIdentifier, ATUBraveBundleIdentifier, ATUEdgeBundleIdentifier];
1920
}
2021

2122
- (nonnull NSString *)URLForRunningApplication:(nonnull NSRunningApplication *)runningApplication {

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ A plugin to extract the URL from the browser to enhance Autotype matching in [Ma
66

77
* Chrome
88
* Brave
9+
* Edge
910
* Safari
1011

1112
## Installation

0 commit comments

Comments
 (0)