Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions injected/scripts/entry-points.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ const builds = {
input: 'entry-points/android-adsjs.js',
output: ['../build/android/adsjsContentScope.js'],
},
'android-adsjs-lm': {
input: 'entry-points/android.js',
output: ['../build/android/adsjsContentScopeLM.js'],
},
windows: {
input: 'entry-points/windows.js',
output: ['../build/windows/contentScope.js'],
Expand Down
11 changes: 11 additions & 0 deletions injected/src/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,17 @@ export const platformSupport = {
'gpc',
'breakageReporting',
],
'android-adsjs-lm': [
'apiManipulation',
'webCompat',
'fingerprintingHardware',
'fingerprintingScreenSize',
'fingerprintingTemporaryStorage',
'fingerprintingAudio',
'fingerprintingBattery',
'gpc',
'breakageReporting',
],
windows: [
'cookie',
...baseFeatures,
Expand Down
3 changes: 2 additions & 1 deletion injected/src/globals.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ interface ImportMeta {
| 'chrome-mv3'
| 'android-broker-protection'
| 'android-autofill-import'
| 'android-adsjs';
| 'android-adsjs'
| 'android-adsjs-lm';
trackerLookup?: Record<string, unknown>;
pageName?: string;
}
Expand Down