Skip to content

Commit c07ff05

Browse files
committed
more chrome removal
1 parent 286e192 commit c07ff05

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

injected/integration-test/type-helpers.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export class Build {
8181
'android',
8282
'android-autofill-password-import',
8383
'chrome-mv3',
84-
'chrome',
8584
'firefox',
8685
];
8786
if (items.includes(name)) {

injected/playwright.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default defineConfig({
5454
use: { injectName: 'android-autofill-password-import', platform: 'android', ...devices['Galaxy S5'] },
5555
},
5656
{
57-
name: 'chrome',
57+
name: 'chrome-mv3',
5858
testMatch: [
5959
'integration-test/remote-pages.spec.js',
6060
'integration-test/cookie.spec.js',
@@ -64,7 +64,7 @@ export default defineConfig({
6464
'integration-test/utils.spec.js',
6565
'integration-test/web-compat.spec.js',
6666
],
67-
use: { injectName: 'chrome', platform: 'extension', ...devices['Desktop Chrome'] },
67+
use: { injectName: 'chrome-mv3', platform: 'extension', ...devices['Desktop Chrome'] },
6868
},
6969
{
7070
name: 'firefox',

injected/src/features/cookie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { isTrackerOrigin } from '../trackers.js';
2121

2222
function initialShouldBlockTrackerCookie() {
2323
const injectName = import.meta.injectName;
24-
return injectName === 'chrome' || injectName === 'firefox' || injectName === 'chrome-mv3' || injectName === 'windows';
24+
return injectName === 'firefox' || injectName === 'chrome-mv3' || injectName === 'windows';
2525
}
2626

2727
// Initial cookie policy pre init

injected/src/globals.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ interface ImportMeta {
1919
| 'windows'
2020
| 'integration'
2121
| 'chrome-mv3'
22-
| 'chrome'
2322
| 'android-broker-protection'
2423
| 'android-autofill-password-import';
2524
trackerLookup?: Record<string, unknown>;

0 commit comments

Comments
 (0)