jsdet-chrome-ext 0.1.0

Chrome Extension API bridges for jsdet — chrome.tabs, chrome.cookies, chrome.webRequest, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
//! Chrome extension manifest.json parser.
//!
//! Extracts security-relevant fields:
//! - Permissions (what APIs the extension can access)
//! - Content scripts (what pages the extension injects into)
//! - Content Security Policy
//! - Background script/service worker
//! - externally_connectable (which websites can message the extension)

use serde::{Deserialize, Serialize};

/// Parsed Chrome extension manifest.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct Manifest {
    /// Extension name.
    #[serde(default)]
    pub name: String,

    /// Manifest version (2 or 3).
    #[serde(default)]
    pub manifest_version: u32,

    /// Extension version string.
    #[serde(default)]
    pub version: String,

    /// Permissions requested.
    #[serde(default)]
    pub permissions: Vec<String>,

    /// Optional permissions.
    #[serde(default)]
    pub optional_permissions: Vec<String>,

    /// Host permissions (MV3).
    #[serde(default)]
    pub host_permissions: Vec<String>,

    /// Content scripts.
    #[serde(default)]
    pub content_scripts: Vec<ContentScript>,

    /// Background page/service worker.
    #[serde(default)]
    pub background: Option<Background>,

    /// Content Security Policy.
    #[serde(default)]
    pub content_security_policy: Option<CspConfig>,

    /// Which websites can send messages to this extension.
    #[serde(default)]
    pub externally_connectable: Option<ExternallyConnectable>,

    /// Web accessible resources.
    #[serde(default)]
    pub web_accessible_resources: Vec<serde_json::Value>,
}

/// A content script declaration.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct ContentScript {
    /// URL match patterns (e.g. ["<all_urls>"], ["https://example.com/*"]).
    #[serde(default)]
    pub matches: Vec<String>,

    /// JavaScript files to inject.
    #[serde(default)]
    pub js: Vec<String>,

    /// CSS files to inject.
    #[serde(default)]
    pub css: Vec<String>,

    /// When to inject: "document_start", "document_end", "document_idle".
    #[serde(default)]
    pub run_at: Option<String>,

    /// Whether to inject into all frames.
    #[serde(default)]
    pub all_frames: bool,
}

/// Background page or service worker.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct Background {
    /// Service worker path (MV3).
    #[serde(default)]
    pub service_worker: Option<String>,

    /// Background page scripts (MV2).
    #[serde(default)]
    pub scripts: Vec<String>,

    /// Background page HTML (MV2).
    #[serde(default)]
    pub page: Option<String>,

    /// Whether the background is persistent (MV2).
    #[serde(default)]
    pub persistent: Option<bool>,
}

/// Content Security Policy configuration.
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(untagged)]
pub enum CspConfig {
    /// MV2: single CSP string.
    String(String),
    /// MV3: per-context CSP.
    Object {
        #[serde(default)]
        extension_pages: Option<String>,
        #[serde(default)]
        sandbox: Option<String>,
    },
}

impl Default for CspConfig {
    fn default() -> Self {
        CspConfig::String(String::new())
    }
}

/// Which websites can send messages to this extension.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct ExternallyConnectable {
    /// URL match patterns for websites that can connect.
    #[serde(default)]
    pub matches: Vec<String>,

    /// Extension IDs that can connect.
    #[serde(default)]
    pub ids: Vec<String>,

    /// Whether TLS channel ID is accepted.
    #[serde(default)]
    pub accepts_tls_channel_id: bool,
}

impl Manifest {
    /// Parse a manifest.json string.
    pub fn parse(json: &str) -> Result<Self, String> {
        serde_json::from_str(json).map_err(|e| format!("manifest parse error: {e}"))
    }

    /// Whether this extension injects into all URLs.
    pub fn injects_all_urls(&self) -> bool {
        self.content_scripts.iter().any(|cs| {
            cs.matches
                .iter()
                .any(|m| m == "<all_urls>" || m == "*://*/*")
        })
    }

    /// Whether this extension has dangerous permissions.
    pub fn has_dangerous_permissions(&self) -> bool {
        let dangerous = [
            "tabs",
            "webRequest",
            "webRequestBlocking",
            "cookies",
            "history",
            "bookmarks",
            "downloads",
            "management",
            "nativeMessaging",
            "debugger",
            "proxy",
            "<all_urls>",
            "*://*/*",
            "http://*/*",
            "https://*/*",
        ];
        self.permissions
            .iter()
            .any(|p| dangerous.contains(&p.as_str()))
            || self
                .host_permissions
                .iter()
                .any(|p| dangerous.contains(&p.as_str()))
    }

    /// Get the CSP string for extension pages.
    pub fn extension_csp(&self) -> Option<&str> {
        match &self.content_security_policy {
            Some(CspConfig::String(s)) => Some(s.as_str()),
            Some(CspConfig::Object {
                extension_pages, ..
            }) => extension_pages.as_deref(),
            None => None,
        }
    }

    /// Whether `eval()` is allowed by the CSP.
    pub fn allows_eval(&self) -> bool {
        match self.extension_csp() {
            None => true, // No CSP = eval allowed
            Some(csp) => csp.contains("'unsafe-eval'"),
        }
    }

    /// All JavaScript files declared in the manifest.
    pub fn all_scripts(&self) -> Vec<String> {
        let mut scripts = Vec::new();

        // Background scripts.
        if let Some(bg) = &self.background {
            if let Some(sw) = &bg.service_worker {
                scripts.push(sw.clone());
            }
            scripts.extend(bg.scripts.clone());
        }

        // Content scripts.
        for cs in &self.content_scripts {
            scripts.extend(cs.js.clone());
        }

        scripts
    }

    /// Whether any external website can message this extension.
    pub fn is_externally_connectable(&self) -> bool {
        self.externally_connectable
            .as_ref()
            .is_some_and(|ec| !ec.matches.is_empty() || !ec.ids.is_empty())
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    // ============================================================
    // BASIC MANIFEST PARSING TESTS
    // ============================================================

    #[test]
    fn parse_mv3_manifest() {
        let json = r#"{
            "name": "Test Extension",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["tabs", "storage"],
            "host_permissions": ["https://example.com/*"],
            "background": {
                "service_worker": "background.js"
            },
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["content.js"],
                "run_at": "document_idle"
            }]
        }"#;

        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.name, "Test Extension");
        assert_eq!(manifest.manifest_version, 3);
        assert!(manifest.injects_all_urls());
        assert!(manifest.has_dangerous_permissions()); // "tabs" is dangerous
        assert_eq!(manifest.all_scripts(), vec!["background.js", "content.js"]);
    }

    #[test]
    fn parse_mv2_manifest() {
        let json = r#"{
            "name": "Legacy",
            "manifest_version": 2,
            "version": "0.1",
            "permissions": ["storage"],
            "background": {
                "scripts": ["bg1.js", "bg2.js"],
                "persistent": false
            },
            "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'"
        }"#;

        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.manifest_version, 2);
        assert!(manifest.allows_eval()); // CSP has 'unsafe-eval'
        assert!(!manifest.has_dangerous_permissions()); // only "storage"
    }

    #[test]
    fn csp_blocks_eval() {
        let json = r#"{
            "name": "Strict",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "extension_pages": "script-src 'self'; object-src 'none'"
            }
        }"#;

        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.allows_eval());
    }

    #[test]
    fn externally_connectable() {
        let json = r#"{
            "name": "Connectable",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": ["https://trusted.example.com/*"]
            }
        }"#;

        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.is_externally_connectable());
    }

    #[test]
    fn not_externally_connectable() {
        let json = r#"{
            "name": "Private",
            "manifest_version": 3,
            "version": "1.0"
        }"#;

        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.is_externally_connectable());
    }

    #[test]
    fn empty_manifest() {
        let manifest = Manifest::parse("{}").unwrap();
        assert_eq!(manifest.name, "");
        assert!(!manifest.injects_all_urls());
        assert!(!manifest.has_dangerous_permissions());
        assert!(manifest.all_scripts().is_empty());
    }

    #[test]
    fn dangerous_host_permissions() {
        let json = r#"{
            "name": "HostPerms",
            "manifest_version": 3,
            "version": "1.0",
            "host_permissions": ["<all_urls>"]
        }"#;

        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    // ============================================================
    // MALFORMED JSON TESTS
    // ============================================================

    #[test]
    fn parse_invalid_json() {
        let json = r#"{ invalid json }"#;
        let result = Manifest::parse(json);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("parse error"));
    }

    #[test]
    fn parse_json_with_trailing_comma() {
        // Trailing commas are invalid in JSON
        let json = r#"{
            "name": "Test",
            "manifest_version": 3,
            "version": "1.0",
        }"#;
        let result = Manifest::parse(json);
        assert!(result.is_err());
    }

    #[test]
    fn parse_json_with_missing_closing_brace() {
        let json = r#"{
            "name": "Test",
            "manifest_version": 3,
            "version": "1.0"
        "#;
        let result = Manifest::parse(json);
        assert!(result.is_err());
    }

    #[test]
    fn parse_json_with_wrong_type_for_manifest_version() {
        // manifest_version should be a number, not a string
        let json = r#"{
            "name": "Test",
            "manifest_version": "3",
            "version": "1.0"
        }"#;
        let result = Manifest::parse(json);
        // serde may accept this depending on implementation, let's see
        // It will likely fail because u32 can't deserialize from string
        assert!(result.is_err());
    }

    #[test]
    fn parse_json_with_extra_fields() {
        // Extra fields should be ignored
        let json = r#"{
            "name": "Test",
            "manifest_version": 3,
            "version": "1.0",
            "unknown_field": "ignored",
            "nested_extra": {"key": "value"}
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.name, "Test");
        assert_eq!(manifest.manifest_version, 3);
    }

    #[test]
    fn parse_empty_string() {
        let result = Manifest::parse("");
        assert!(result.is_err());
    }

    #[test]
    fn parse_whitespace_only() {
        let result = Manifest::parse("   \n\t  ");
        assert!(result.is_err());
    }

    #[test]
    fn parse_null_values() {
        // null values for optional fields
        let json = r#"{
            "name": null,
            "manifest_version": 3,
            "version": null
        }"#;
        // serde with default should handle this
        let result = Manifest::parse(json);
        // This may fail or succeed depending on serde behavior
        // Let's document the behavior
        if let Ok(manifest) = result {
            assert_eq!(manifest.name, ""); // default value
        }
    }

    #[test]
    fn parse_permissions_as_object_instead_of_array() {
        // permissions should be an array
        let json = r#"{
            "name": "Test",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": {"tabs": true}
        }"#;
        let result = Manifest::parse(json);
        assert!(result.is_err());
    }

    // ============================================================
    // MV2 vs MV3 DIFFERENCES
    // ============================================================

    #[test]
    fn mv3_service_worker_only() {
        let json = r#"{
            "name": "MV3",
            "manifest_version": 3,
            "version": "1.0",
            "background": {
                "service_worker": "sw.js"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.manifest_version, 3);
        assert!(
            manifest
                .background
                .as_ref()
                .unwrap()
                .service_worker
                .is_some()
        );
        assert!(manifest.background.as_ref().unwrap().scripts.is_empty());
    }

    #[test]
    fn mv2_background_scripts() {
        let json = r#"{
            "name": "MV2",
            "manifest_version": 2,
            "version": "1.0",
            "background": {
                "scripts": ["bg1.js", "bg2.js"],
                "persistent": true
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.manifest_version, 2);
        assert_eq!(manifest.background.as_ref().unwrap().scripts.len(), 2);
        assert!(
            manifest
                .background
                .as_ref()
                .unwrap()
                .service_worker
                .is_none()
        );
        assert_eq!(manifest.background.as_ref().unwrap().persistent, Some(true));
    }

    #[test]
    fn mv2_background_page() {
        let json = r#"{
            "name": "MV2 Page",
            "manifest_version": 2,
            "version": "1.0",
            "background": {
                "page": "background.html"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(
            manifest.background.as_ref().unwrap().page.as_ref().unwrap(),
            "background.html"
        );
    }

    #[test]
    fn mv2_persistent_default_none() {
        let json = r#"{
            "name": "MV2",
            "manifest_version": 2,
            "version": "1.0",
            "background": {
                "scripts": ["bg.js"]
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.background.as_ref().unwrap().persistent, None);
    }

    // ============================================================
    // CSP PARSING TESTS
    // ============================================================

    #[test]
    fn csp_mv2_string_format() {
        let json = r#"{
            "name": "MV2 CSP",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "script-src 'self'; object-src 'none'"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        match manifest.content_security_policy {
            Some(CspConfig::String(s)) => assert_eq!(s, "script-src 'self'; object-src 'none'"),
            _ => panic!("Expected String CSP"),
        }
    }

    #[test]
    fn csp_mv3_object_format() {
        let json = r#"{
            "name": "MV3 CSP",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "extension_pages": "script-src 'self'; object-src 'none'",
                "sandbox": "sandbox-src 'self'"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        match manifest.content_security_policy {
            Some(CspConfig::Object {
                extension_pages,
                sandbox,
            }) => {
                assert_eq!(
                    extension_pages.as_ref().unwrap(),
                    "script-src 'self'; object-src 'none'"
                );
                assert_eq!(sandbox.as_ref().unwrap(), "sandbox-src 'self'");
            }
            _ => panic!("Expected Object CSP"),
        }
    }

    #[test]
    fn csp_no_csp() {
        let json = r#"{
            "name": "No CSP",
            "manifest_version": 3,
            "version": "1.0"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.content_security_policy.is_none());
        // No CSP means eval is allowed
        assert!(manifest.allows_eval());
    }

    #[test]
    fn csp_empty_string() {
        let json = r#"{
            "name": "Empty CSP",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": ""
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // Empty CSP doesn't contain 'unsafe-eval'
        assert!(!manifest.allows_eval());
    }

    #[test]
    fn csp_multiple_directives_with_unsafe_eval() {
        let json = r#"{
            "name": "Complex CSP",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline'; style-src 'self'"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.allows_eval());
    }

    #[test]
    fn csp_with_wasm_eval_but_not_unsafe_eval() {
        let json = r#"{
            "name": "WASM Eval",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "extension_pages": "script-src 'self' 'wasm-eval'"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // wasm-eval alone doesn't allow eval()
        assert!(!manifest.allows_eval());
    }

    #[test]
    fn csp_multiple_script_src() {
        let json = r#"{
            "name": "Multi Script",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "extension_pages": "script-src 'self'; script-src 'unsafe-eval'"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // The CSP contains 'unsafe-eval' somewhere
        assert!(manifest.allows_eval());
    }

    #[test]
    fn csp_case_sensitivity() {
        // CSP directives are case-insensitive in practice, but our simple string check is case-sensitive
        let json = r#"{
            "name": "Case Test",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "script-src 'SELF' 'UNSAFE-EVAL'"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // Our implementation does case-sensitive check
        assert!(!manifest.allows_eval());
    }

    #[test]
    fn csp_object_with_only_sandbox() {
        let json = r#"{
            "name": "Sandbox Only",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "sandbox": "sandbox-src 'self'"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // No extension_pages CSP means no restriction on eval
        assert!(manifest.allows_eval());
    }

    // ============================================================
    // PERMISSIONS TESTS
    // ============================================================

    #[test]
    fn permission_tabs_alone_is_dangerous() {
        let json = r#"{
            "name": "Tabs",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["tabs"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_webrequest_is_dangerous() {
        let json = r#"{
            "name": "WebReq",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["webRequest"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_webrequest_blocking_is_dangerous() {
        let json = r#"{
            "name": "WebReqBlock",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["webRequestBlocking"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_cookies_is_dangerous() {
        let json = r#"{
            "name": "Cookies",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["cookies"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_history_is_dangerous() {
        let json = r#"{
            "name": "History",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["history"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_bookmarks_is_dangerous() {
        let json = r#"{
            "name": "Bookmarks",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["bookmarks"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_downloads_is_dangerous() {
        let json = r#"{
            "name": "Downloads",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["downloads"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_management_is_dangerous() {
        let json = r#"{
            "name": "Management",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["management"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_native_messaging_is_dangerous() {
        let json = r#"{
            "name": "Native",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["nativeMessaging"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_debugger_is_dangerous() {
        let json = r#"{
            "name": "Debugger",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["debugger"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_proxy_is_dangerous() {
        let json = r#"{
            "name": "Proxy",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["proxy"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_storage_is_safe() {
        let json = r#"{
            "name": "Storage",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["storage"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.has_dangerous_permissions());
    }

    #[test]
    fn permission_active_tab_is_safe() {
        let json = r#"{
            "name": "ActiveTab",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["activeTab"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.has_dangerous_permissions());
    }

    #[test]
    fn multiple_permissions_mixed_dangerous() {
        let json = r#"{
            "name": "Mixed",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": ["storage", "activeTab", "tabs", "alarms"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn optional_permissions_checked() {
        let json = r#"{
            "name": "Optional",
            "manifest_version": 3,
            "version": "1.0",
            "optional_permissions": ["tabs", "downloads"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // optional_permissions are not checked by has_dangerous_permissions
        assert!(!manifest.has_dangerous_permissions());
    }

    #[test]
    fn host_permission_all_urls_is_dangerous() {
        let json = r#"{
            "name": "AllURLs",
            "manifest_version": 3,
            "version": "1.0",
            "host_permissions": ["*://*/*"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn host_permission_http_wildcard_is_dangerous() {
        let json = r#"{
            "name": "HttpWildcard",
            "manifest_version": 3,
            "version": "1.0",
            "host_permissions": ["http://*/*"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn host_permission_https_wildcard_is_dangerous() {
        let json = r#"{
            "name": "HttpsWildcard",
            "manifest_version": 3,
            "version": "1.0",
            "host_permissions": ["https://*/*"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.has_dangerous_permissions());
    }

    #[test]
    fn host_permission_specific_is_safe() {
        let json = r#"{
            "name": "Specific",
            "manifest_version": 3,
            "version": "1.0",
            "host_permissions": ["https://example.com/*"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.has_dangerous_permissions());
    }

    // ============================================================
    // CONTENT SCRIPTS TESTS
    // ============================================================

    #[test]
    fn content_script_single() {
        let json = r#"{
            "name": "Single CS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["https://*.example.com/*"],
                "js": ["content.js"],
                "css": ["styles.css"],
                "run_at": "document_start",
                "all_frames": true
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.content_scripts.len(), 1);
        let cs = &manifest.content_scripts[0];
        assert_eq!(cs.matches[0], "https://*.example.com/*");
        assert_eq!(cs.js[0], "content.js");
        assert_eq!(cs.css[0], "styles.css");
        assert_eq!(cs.run_at.as_ref().unwrap(), "document_start");
        assert!(cs.all_frames);
    }

    #[test]
    fn content_script_multiple() {
        let json = r#"{
            "name": "Multi CS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [
                {
                    "matches": ["https://a.com/*"],
                    "js": ["a.js"]
                },
                {
                    "matches": ["https://b.com/*"],
                    "js": ["b.js"]
                },
                {
                    "matches": ["https://c.com/*"],
                    "js": ["c.js"]
                }
            ]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.content_scripts.len(), 3);
    }

    #[test]
    fn content_script_overlapping_matches() {
        let json = r#"{
            "name": "Overlap",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [
                {
                    "matches": ["<all_urls>", "https://*/*"],
                    "js": ["all.js"]
                }
            ]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.injects_all_urls());
    }

    #[test]
    fn content_script_no_matches() {
        let json = r#"{
            "name": "No Matches",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": [],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.injects_all_urls());
        assert!(manifest.all_scripts().contains(&"content.js".to_string()));
    }

    #[test]
    fn content_script_no_js_files() {
        let json = r#"{
            "name": "No JS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "css": ["styles.css"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.injects_all_urls());
        // No JS files in all_scripts
        assert!(!manifest.all_scripts().contains(&"styles.css".to_string()));
    }

    #[test]
    fn content_script_multiple_js_files() {
        let json = r#"{
            "name": "Multi JS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["lib.js", "content.js", "utils.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        let scripts = manifest.all_scripts();
        assert!(scripts.contains(&"lib.js".to_string()));
        assert!(scripts.contains(&"content.js".to_string()));
        assert!(scripts.contains(&"utils.js".to_string()));
    }

    #[test]
    fn content_script_default_run_at() {
        let json = r#"{
            "name": "Default",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.content_scripts[0].run_at.is_none());
    }

    #[test]
    fn content_script_default_all_frames() {
        let json = r#"{
            "name": "Default",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.content_scripts[0].all_frames); // default is false
    }

    // ============================================================
    // EXTERNALLY_CONNECTABLE TESTS
    // ============================================================

    #[test]
    fn externally_connectable_empty_matches() {
        let json = r#"{
            "name": "Empty Matches",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": []
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // Empty matches means not externally connectable
        assert!(!manifest.is_externally_connectable());
    }

    #[test]
    fn externally_connectable_wildcard() {
        let json = r#"{
            "name": "Wildcard",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": ["*://*/*"]
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.is_externally_connectable());
    }

    #[test]
    fn externally_connectable_specific_domain() {
        let json = r#"{
            "name": "Specific",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": ["https://trusted.com/*"]
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.is_externally_connectable());
    }

    #[test]
    fn externally_connectable_multiple_domains() {
        let json = r#"{
            "name": "Multi",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": ["https://a.com/*", "https://b.com/*", "https://c.com/*"]
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.is_externally_connectable());
    }

    #[test]
    fn externally_connectable_only_ids() {
        let json = r#"{
            "name": "IDs Only",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "ids": ["other-extension-id"]
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // IDs only should make it externally connectable
        assert!(manifest.is_externally_connectable());
    }

    #[test]
    fn externally_connectable_with_tls_channel_id() {
        let json = r#"{
            "name": "TLS",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": ["https://secure.com/*"],
                "accepts_tls_channel_id": true
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.is_externally_connectable());
        assert!(
            manifest
                .externally_connectable
                .as_ref()
                .unwrap()
                .accepts_tls_channel_id
        );
    }

    #[test]
    fn externally_connectable_both_empty() {
        let json = r#"{
            "name": "Both Empty",
            "manifest_version": 3,
            "version": "1.0",
            "externally_connectable": {
                "matches": [],
                "ids": []
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.is_externally_connectable());
    }

    // ============================================================
    // ALL_SCRIPTS() ORDERING TESTS
    // ============================================================

    #[test]
    fn all_scripts_background_first() {
        let json = r#"{
            "name": "Order",
            "manifest_version": 3,
            "version": "1.0",
            "background": {
                "service_worker": "sw.js"
            },
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        let scripts = manifest.all_scripts();
        assert_eq!(scripts[0], "sw.js");
        assert_eq!(scripts[1], "content.js");
    }

    #[test]
    fn all_scripts_mv2_order() {
        let json = r#"{
            "name": "MV2 Order",
            "manifest_version": 2,
            "version": "1.0",
            "background": {
                "scripts": ["bg1.js", "bg2.js"]
            },
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["cs1.js", "cs2.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        let scripts = manifest.all_scripts();
        // Background scripts come first, in order
        assert_eq!(scripts[0], "bg1.js");
        assert_eq!(scripts[1], "bg2.js");
        // Then content scripts, in order
        assert_eq!(scripts[2], "cs1.js");
        assert_eq!(scripts[3], "cs2.js");
    }

    #[test]
    fn all_scripts_no_background() {
        let json = r#"{
            "name": "No BG",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        let scripts = manifest.all_scripts();
        assert_eq!(scripts.len(), 1);
        assert_eq!(scripts[0], "content.js");
    }

    #[test]
    fn all_scripts_multiple_content_scripts() {
        let json = r#"{
            "name": "Multi CS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [
                {"matches": ["https://a.com/*"], "js": ["a.js"]},
                {"matches": ["https://b.com/*"], "js": ["b.js"]}
            ]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        let scripts = manifest.all_scripts();
        assert_eq!(scripts.len(), 2);
        assert_eq!(scripts[0], "a.js");
        assert_eq!(scripts[1], "b.js");
    }

    #[test]
    fn all_scripts_empty_content_scripts() {
        let json = r#"{
            "name": "Empty CS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [
                {"matches": ["https://a.com/*"], "js": []},
                {"matches": ["https://b.com/*"], "js": ["b.js"]}
            ]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        let scripts = manifest.all_scripts();
        assert_eq!(scripts.len(), 1);
        assert_eq!(scripts[0], "b.js");
    }

    // ============================================================
    // ALLOWS_EVAL() EDGE CASES
    // ============================================================

    #[test]
    fn allows_eval_no_csp() {
        let manifest =
            Manifest::parse(r#"{"name":"T","manifest_version":3,"version":"1.0"}"#).unwrap();
        assert!(manifest.allows_eval());
    }

    #[test]
    fn allows_eval_with_unsafe_eval() {
        let json = r#"{
            "name": "Unsafe",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "script-src 'self' 'unsafe-eval'"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.allows_eval());
    }

    #[test]
    fn allows_eval_without_unsafe_eval() {
        let json = r#"{
            "name": "Safe",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "script-src 'self'"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.allows_eval());
    }

    #[test]
    fn allows_eval_nested_quotes() {
        // Edge case: nested quote handling - the implementation uses simple substring match
        // so ''unsafe-eval'' will still match 'unsafe-eval' inside it
        let json = r#"{
            "name": "Nested",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "script-src ''unsafe-eval''"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // NOTE: The implementation does simple substring matching, so this still matches
        // This is actually a gap - proper CSP parsing would reject this
        assert!(manifest.allows_eval());
    }

    // ============================================================
    // INJECTS_ALL_URLS() PATTERNS
    // ============================================================

    #[test]
    fn injects_all_urls_exact_match() {
        let json = r#"{
            "name": "All URLs",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["<all_urls>"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.injects_all_urls());
    }

    #[test]
    fn injects_all_urls_wildcard_pattern() {
        let json = r#"{
            "name": "Wildcard",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["*://*/*"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.injects_all_urls());
    }

    #[test]
    fn injects_all_urls_specific_domain() {
        let json = r#"{
            "name": "Specific",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["https://example.com/*"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.injects_all_urls());
    }

    #[test]
    fn injects_all_urls_partial_wildcard() {
        let json = r#"{
            "name": "Partial",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["https://*/*"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        // https://*/* is not <all_urls> or *://*/*
        assert!(!manifest.injects_all_urls());
    }

    #[test]
    fn injects_all_urls_mixed_patterns() {
        let json = r#"{
            "name": "Mixed",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": ["https://example.com/*", "<all_urls>"],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.injects_all_urls());
    }

    #[test]
    fn injects_all_urls_no_content_scripts() {
        let manifest =
            Manifest::parse(r#"{"name":"T","manifest_version":3,"version":"1.0"}"#).unwrap();
        assert!(!manifest.injects_all_urls());
    }

    #[test]
    fn injects_all_urls_empty_matches() {
        let json = r#"{
            "name": "Empty",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{
                "matches": [],
                "js": ["content.js"]
            }]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.injects_all_urls());
    }

    // ============================================================
    // EDGE CASES: LARGE DATA
    // ============================================================

    #[test]
    fn many_permissions() {
        let perms: Vec<String> = (0..100).map(|i| format!("permission{}", i)).collect();
        let json = format!(
            r#"{{
            "name": "Many Perms",
            "manifest_version": 3,
            "version": "1.0",
            "permissions": {:?}
        }}"#,
            perms
        );
        let manifest = Manifest::parse(&json).unwrap();
        assert_eq!(manifest.permissions.len(), 100);
    }

    #[test]
    fn many_content_scripts() {
        let scripts: Vec<String> = (0..100)
            .map(|i| {
                format!(
                    r#"{{"matches": ["https://site{}.com/*"], "js": ["script{}.js"]}}"#,
                    i, i
                )
            })
            .collect();
        let json = format!(
            r#"{{
            "name": "Many CS",
            "manifest_version": 3,
            "version": "1.0",
            "content_scripts": [{}]
        }}"#,
            scripts.join(",")
        );
        let manifest = Manifest::parse(&json).unwrap();
        assert_eq!(manifest.content_scripts.len(), 100);
    }

    #[test]
    fn very_long_strings() {
        let long_name = "x".repeat(10000);
        let json = format!(
            r#"{{
            "name": "{}",
            "manifest_version": 3,
            "version": "{}"
        }}"#,
            long_name, "1.0"
        );
        let manifest = Manifest::parse(&json).unwrap();
        assert_eq!(manifest.name.len(), 10000);
    }

    #[test]
    fn deeply_nested_json_not_accepted() {
        // Manifest doesn't have deeply nested structures, but test it doesn't crash
        let json = r#"{
            "name": "Test",
            "manifest_version": 3,
            "version": "1.0",
            "web_accessible_resources": [
                {"resources": ["a.js"], "matches": ["<all_urls>"]}
            ]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(!manifest.web_accessible_resources.is_empty());
    }

    // ============================================================
    // WEB_ACCESSIBLE_RESOURCES TESTS
    // ============================================================

    #[test]
    fn web_accessible_resources_mv3_format() {
        let json = r#"{
            "name": "WAR",
            "manifest_version": 3,
            "version": "1.0",
            "web_accessible_resources": [
                {
                    "resources": ["image.png", "script.js"],
                    "matches": ["<all_urls>"]
                }
            ]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.web_accessible_resources.len(), 1);
    }

    #[test]
    fn web_accessible_resources_mv2_format() {
        let json = r#"{
            "name": "WAR MV2",
            "manifest_version": 2,
            "version": "1.0",
            "web_accessible_resources": ["image.png", "script.js"]
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.web_accessible_resources.len(), 2);
    }

    #[test]
    fn web_accessible_resources_empty() {
        let json = r#"{
            "name": "Empty WAR",
            "manifest_version": 3,
            "version": "1.0",
            "web_accessible_resources": []
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert!(manifest.web_accessible_resources.is_empty());
    }

    // ============================================================
    // EXTENSION_CSP() TESTS
    // ============================================================

    #[test]
    fn extension_csp_mv2_string() {
        let json = r#"{
            "name": "MV2 CSP",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": "script-src 'self'"
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.extension_csp(), Some("script-src 'self'"));
    }

    #[test]
    fn extension_csp_mv3_object() {
        let json = r#"{
            "name": "MV3 CSP",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "extension_pages": "script-src 'self'"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.extension_csp(), Some("script-src 'self'"));
    }

    #[test]
    fn extension_csp_none() {
        let manifest =
            Manifest::parse(r#"{"name":"T","manifest_version":3,"version":"1.0"}"#).unwrap();
        assert_eq!(manifest.extension_csp(), None);
    }

    #[test]
    fn extension_csp_object_no_extension_pages() {
        let json = r#"{
            "name": "No Ext Pages",
            "manifest_version": 3,
            "version": "1.0",
            "content_security_policy": {
                "sandbox": "sandbox-src 'self'"
            }
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.extension_csp(), None);
    }

    #[test]
    fn extension_csp_empty_string() {
        let json = r#"{
            "name": "Empty CSP",
            "manifest_version": 2,
            "version": "1.0",
            "content_security_policy": ""
        }"#;
        let manifest = Manifest::parse(json).unwrap();
        assert_eq!(manifest.extension_csp(), Some(""));
    }
}