File: file_manager_test_manifest.json

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (23 lines) | stat: -rw-r--r-- 861 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  // chrome-extension://oobinhbdbiehknkpbpejbbpdbkdjmoco/
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBjsTE4ocXJWzgcCDCUcsPASoRCGaTHrHn6b4zDTCayTuJtyGKzw4xZPMiG4dbEbmSAwEU7UCoyJAM1XfLS7UQ/Zz7ft8wpZkSS8/PJW+E4Qu++tMS0csj2Wdrrd2c5yyWxlJ+H9o2ivwtwuxs7pd+LXt+gsBA0epnT04T9EvOTQIDAQAB",
  "name": "Files test extension",
  "version": "0.2",
  "incognito": "split",  // Run a separate instance for the incognito mode.
  "manifest_version": 3,
  "description": "Files test extension",
  "background": {
    "service_worker": "file_manager/background.js",
    "type": "module"
  },
  "permissions": [
    {"fileSystem": ["write"]},
    "chrome://resources/",
    "tabs",
    "commandLinePrivate",
    "chrome-extension://oobinhbdbiehknkpbpejbbpdbkdjmoco/*"
  ],
  "content_security_policy": {
    "extension_page": "script-src 'self' chrome://resources ;"
  }
}