Guest User

Untitled

a guest
Jun 19th, 2026
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.50 KB | None | 0 0
  1. llm_user_input_extractor_config.json
  2. ==========================================
  3. {
  4. "version": "3.0.0.0",
  5. "rules": [
  6. {
  7. "name": "ChatGPT",
  8. "host_patterns": ["chatgpt.com", "chat.openai.com"],
  9. "extraction_paths": [
  10. ["messages", "*", "content", "parts", "*"]
  11. ],
  12. "_example_payload": {
  13. "action": "next",
  14. "messages": [
  15. {
  16. "id": "28b995a9-c01f-4c56-815f-7f147ecfb469",
  17. "author": { "role": "user" },
  18. "content": {
  19. "content_type": "text",
  20. "parts": ["USER INPUT HERE"]
  21. }
  22. }
  23. ]
  24. }
  25. },
  26. {
  27. "name": "Google Gemini",
  28. "host_patterns": ["gemini.google.com"],
  29. "is_url_encoded": true,
  30. "url_param_name": "f.req",
  31. "nested_json_path": ["1"],
  32. "extraction_paths": [
  33. ["0", "0"]
  34. ],
  35. "_note": "Gemini has double JSON encoding: f.req decoded -> [null, \"[[\\\"USER INPUT\\\",...]]\"] -> parse [1] as JSON -> [0][0] has user input",
  36. "_example_payload_raw": "f.req=%5Bnull%2C%22%5B%5B%5C%22USER INPUT HERE%5C%22%2C0%2Cnull%5D%5D%22%5D",
  37. "_example_payload_decoded_outer": [null, "[[\"USER INPUT HERE\",0,null]]"],
  38. "_example_payload_decoded_inner": [["USER INPUT HERE", 0, null]]
  39. },
  40. {
  41. "name": "Claude",
  42. "host_patterns": ["claude.ai"],
  43. "extraction_paths": [
  44. ["prompt"],
  45. ["messages", "*", "content"]
  46. ],
  47. "_example_payload": {
  48. "prompt": "USER INPUT HERE",
  49. "parent_message_uuid": "019c3482-758c-71e2-ac54-c928cdb072b8",
  50. "timezone": "America/Los_Angeles",
  51. "model": "claude-sonnet-4-5-20250929",
  52. "tools": [],
  53. "attachments": [],
  54. "rendering_mode": "messages"
  55. }
  56. },
  57. {
  58. "name": "Consumer Copilot",
  59. "host_patterns": ["copilot.microsoft.com", "m365.cloud.microsoft"],
  60. "array_path": ["content"],
  61. "array_type_field": "type",
  62. "array_type_value": "text",
  63. "array_text_field": "text",
  64. "skip_event_types": ["setOptions", "messagePreview"],
  65. "_example_payload": {
  66. "event": "send",
  67. "conversationId": "YtGckuWVEf88dyvXpTWW1",
  68. "content": [{"type": "text", "text": "USER INPUT HERE"}],
  69. "mode": "smart",
  70. "context": {}
  71. },
  72. "_note": "setOptions events contain config data, not user input"
  73. },
  74. {
  75. "name": "Perplexity",
  76. "host_patterns": ["perplexity.ai"],
  77. "extraction_paths": [
  78. ["query_str"],
  79. ["params", "dsl_query"]
  80. ],
  81. "_example_payload": {
  82. "params": {
  83. "attachments": [],
  84. "language": "en-US",
  85. "timezone": "America/Los_Angeles",
  86. "search_focus": "internet",
  87. "dsl_query": "USER INPUT HERE"
  88. },
  89. "query_str": "USER INPUT HERE"
  90. }
  91. },
  92. {
  93. "name": "Meta AI",
  94. "host_patterns": ["graph.meta.ai", "ai.facebook.com"],
  95. "is_multipart_form": true,
  96. "form_field_name": "variables",
  97. "extraction_paths": [
  98. ["message", "sensitive_string_value"]
  99. ],
  100. "_note": "Meta AI sends multipart form-data with JSON in the 'variables' field",
  101. "_example_variables_json": {
  102. "message": {
  103. "sensitive_string_value": "USER INPUT HERE"
  104. },
  105. "externalConversationId": "046135cb-566c-49c1-80a5-f1d3fd9442cc",
  106. "isNewConversation": true
  107. }
  108. },
  109. {
  110. "name": "Grok",
  111. "host_patterns": ["grok.com"],
  112. "extraction_paths": [
  113. ["message"]
  114. ],
  115. "_example_payload": {
  116. "temporary": false,
  117. "modelName": "grok-3",
  118. "message": "USER INPUT HERE",
  119. "fileAttachments": [],
  120. "imageAttachments": [],
  121. "disableSearch": false
  122. }
  123. },
  124. {
  125. "name": "DeepSeek",
  126. "host_patterns": ["chat.deepseek.com"],
  127. "extraction_paths": [
  128. ["prompt"]
  129. ],
  130. "_example_payload": {
  131. "chat_session_id": "384a28da-7350-444f-a92e-d48aa10ca9a8",
  132. "parent_message_id": null,
  133. "prompt": "USER INPUT HERE",
  134. "ref_file_ids": [],
  135. "thinking_enabled": false,
  136. "search_enabled": false
  137. }
  138. }
  139. ]
  140. }
  141. ==================================================
  142. manifest.json
  143. {
  144. "manifest_version": 3,
  145. "description": "Data Protection Lists component",
  146. "name": "Data Protection Lists",
  147. "version": "2026.06.05.1"
  148. }
  149. ==================================================
  150. office_endpoints_list.json
  151. [
  152. "*.aadrm.cn",
  153. "*.aadrm.com",
  154. "*.aadrm.us",
  155. "*.acompli.net",
  156. "*.activity.windows.com",
  157. "*.appex-rf.msn.com",
  158. "*.appex.bing.com",
  159. "*.apps.mil",
  160. "*.aria.microsoft.com",
  161. "*.assets-yammer.com",
  162. "*.auth.microsoft.cn",
  163. "*.auth.microsoft.com",
  164. "*.auth.microsoft.us",
  165. "*.azure-apim.net",
  166. "*.azure-mobile.cn",
  167. "*.azurerms.com",
  168. "*.cdn.office.net",
  169. "*.chinacloud-mobile.cn",
  170. "*.chinacloudapi.cn",
  171. "*.cloud.microsoft",
  172. "*.cortana.ai",
  173. "*.dod.online.office365.us",
  174. "*.dod.teams.microsoft.us",
  175. "*.dps.mil",
  176. "*.entrust.net",
  177. "*.events.data.microsoft.com",
  178. "*.flow.microsoft.com",
  179. "*.geotrust.com",
  180. "*.gov.online.office365.us",
  181. "*.gov.teams.microsoft.us",
  182. "*.gov.us.microsoftonline.com",
  183. "*.hip.live.com",
  184. "*.informationprotection.azure.com",
  185. "*.informationprotection.azure.us",
  186. "*.keydelivery.mediaservices.windows.net",
  187. "*.lync.com",
  188. "*.mail.protection.outlook.com",
  189. "*.mail.protection.partner.outlook.cn",
  190. "*.manage.office365.us",
  191. "*.microsoft.com",
  192. "*.microsoftonline-p.com",
  193. "*.microsoftonline.cn",
  194. "*.microsoftonline.com",
  195. "*.microsoftusercontent.com",
  196. "*.msauth.cn",
  197. "*.msauth.net",
  198. "*.msauthimages.cn",
  199. "*.msauthimages.net",
  200. "*.msauthimages.us",
  201. "*.msecnd.net",
  202. "*.msftauth.cn",
  203. "*.msftauth.net",
  204. "*.msftauthimages.cn",
  205. "*.msftauthimages.net",
  206. "*.msftauthimages.us",
  207. "*.msftidentity.com",
  208. "*.msidentity.com",
  209. "*.msocdn.com",
  210. "*.mx.microsoft",
  211. "*.o365weve.com",
  212. "*.office.com",
  213. "*.office.delivery.microsoft.com",
  214. "*.office.net",
  215. "*.office365.com",
  216. "*.office365.us",
  217. "*.officeapps.live.com",
  218. "*.officewebapps.cn",
  219. "*.omniroot.com",
  220. "*.onenote.com",
  221. "*.online.dod.skypeforbusiness.us",
  222. "*.online.office.com",
  223. "*.onmicrosoft.com",
  224. "*.onmschina.cn",
  225. "*.osi.office365.us",
  226. "*.outlook.com",
  227. "*.outlookmobile.com",
  228. "*.partner.lync.cn",
  229. "*.partner.microsoftonline-m-i.net.cn",
  230. "*.partner.microsoftonline-m.net.cn",
  231. "*.partner.microsoftonline-p.cn",
  232. "*.partner.microsoftonline-p.net.cn",
  233. "*.partner.microsoftonline.cn",
  234. "*.partner.office365.cn",
  235. "*.partner.officewebapps.cn",
  236. "*.partner.outlook.cn",
  237. "*.phonefactor.net",
  238. "*.portal.cloudappsecurity.com",
  239. "*.powerapps.com",
  240. "*.powerautomate.com",
  241. "*.protection.apps.mil",
  242. "*.protection.office.com",
  243. "*.protection.office365.us",
  244. "*.protection.outlook.com",
  245. "*.protection.partner.outlook.cn",
  246. "*.public-trust.com",
  247. "*.scc.office365.us",
  248. "*.security.apps.mil",
  249. "*.security.microsoft.com",
  250. "*.security.microsoft.us",
  251. "*.sharepoint-mil.us",
  252. "*.sharepoint.cn",
  253. "*.sharepoint.com",
  254. "*.sharepoint.us",
  255. "*.sharepointonline.com",
  256. "*.skype.com",
  257. "*.sovcloud-identity.de",
  258. "*.sovcloud-identity.fr",
  259. "*.sovcloud-mx.cn",
  260. "*.sovcloud-sharepoint.de",
  261. "*.sovcloud-sharepoint.fr",
  262. "*.sovcloud-static.cn",
  263. "*.sovcloud-static.de",
  264. "*.sovcloud-static.fr",
  265. "*.sovcloud-usercontent.cn",
  266. "*.sovcloud-usercontent.de",
  267. "*.sovcloud-usercontent.fr",
  268. "*.sovcloud.cn",
  269. "*.sovcloud.de",
  270. "*.sovcloud.fr",
  271. "*.static.microsoft",
  272. "*.streaming.mediaservices.windows.net",
  273. "*.svc.ms",
  274. "*.symcb.com",
  275. "*.symcd.com",
  276. "*.teams.cloud.microsoft",
  277. "*.teams.microsoft.com",
  278. "*.teams.microsoftonline.cn",
  279. "*.usercontent.microsoft",
  280. "*.usgovcloud-mx.microsoft",
  281. "*.usgovcloud-static.microsoft",
  282. "*.usgovcloud-usercontent.microsoft",
  283. "*.usgovcloud.microsoft",
  284. "*.verisign.com",
  285. "*.verisign.net",
  286. "*.virtualearth.net",
  287. "*.windowsazure.cn",
  288. "*.wns.windows.com",
  289. "*.yammer.com",
  290. "*.yammerusercontent.com",
  291. "*cdn.onenote.net",
  292. "account.activedirectory.windowsazure.com",
  293. "account.live.com",
  294. "accounts.accesscontrol.windows.net",
  295. "activation.sls.microsoft.com",
  296. "activity.windows.com",
  297. "adl.windows.com",
  298. "admin.microsoft.com",
  299. "admin.onedrive.com",
  300. "admin.onedrive.us",
  301. "adminwebservice.microsoftonline.com",
  302. "ajax.aspnetcdn.com",
  303. "aka.ms",
  304. "amp.azure.net",
  305. "api.passwordreset.microsoftonline.com",
  306. "apis.live.net",
  307. "appsforoffice.microsoft.com",
  308. "assets.onestore.ms",
  309. "attachments-dod.office365-net.us",
  310. "attachments.office365-net.cn",
  311. "attachments.office365-net.us",
  312. "auth.gfx.ms",
  313. "autodiscover-s-dod.office365.us",
  314. "autodiscover-s.office365.us",
  315. "autologon.microsoftazuread-sso.com",
  316. "becws.microsoftonline.com",
  317. "c.bing.com",
  318. "c.bing.net",
  319. "c.live.com",
  320. "c1.microsoft.com",
  321. "cacerts.digicert.com",
  322. "ccs.login.microsoftonline.com",
  323. "cdn.odc.officeapps.live.com",
  324. "cdn.uci.officeapps.live.com",
  325. "cert.int-x3.letsencrypt.org",
  326. "clientconfig.microsoftonline-p.net",
  327. "companymanager.microsoftonline.com",
  328. "compliance.apps.mil",
  329. "compliance.microsoft.com",
  330. "compliance.microsoft.us",
  331. "crl.globalsign.com",
  332. "crl.globalsign.net",
  333. "crl.identrust.com",
  334. "crl.microsoft.com",
  335. "crl3.digicert.com",
  336. "crl4.digicert.com",
  337. "dc.services.visualstudio.com",
  338. "defender.microsoft.com",
  339. "device.login.microsoftonline.com",
  340. "dgps.support.microsoft.com",
  341. "docs.microsoft.com",
  342. "dod-graph.microsoft.us",
  343. "dod-mtis.cortana.ai",
  344. "dod.activity.windows.us",
  345. "dod.loki.office365.us",
  346. "dod.teams.microsoft.us",
  347. "ecn.dev.virtualearth.net",
  348. "enterpriseregistration.windows.net",
  349. "eus-www.sway-cdn.com",
  350. "eus-www.sway-extensions.com",
  351. "g.live.com",
  352. "gcc-high.activity.windows.us",
  353. "gcch-mtis.cortana.ai",
  354. "gcchigh.loki.office365.us",
  355. "go.microsoft.com",
  356. "gov.teams.microsoft.us",
  357. "graph.microsoft.com",
  358. "graph.microsoft.us",
  359. "graph.microsoftazure.us",
  360. "graph.windows.net",
  361. "informationprotection.hosting.portal.azure.net",
  362. "insertmedia.bing.office.net",
  363. "isrg.trustid.ocsp.identrust.com",
  364. "join.secure.skypeassets.com",
  365. "login-us.microsoftonline.com",
  366. "login.live.com",
  367. "login.microsoft.com",
  368. "login.microsoftonline-p.com",
  369. "login.microsoftonline.com",
  370. "login.microsoftonline.us",
  371. "login.partner.microsoftonline.cn",
  372. "login.windows-ppe.net",
  373. "login.windows.net",
  374. "logincert.microsoftonline.com",
  375. "loginex.microsoftonline.com",
  376. "loki.office365.cn",
  377. "lpcres.delve.office.com",
  378. "manage.office365.us",
  379. "mem.gfx.ms",
  380. "microsoftgraph.chinacloudapi.cn",
  381. "mlccdnprod.azureedge.net",
  382. "mrodevicemgr.officeapps.live.com",
  383. "mscrl.microsoft.com",
  384. "msdn.microsoft.com",
  385. "msteamsstatics.blob.core.usgovcloudapi.net",
  386. "nexus.microsoftonline-p.com",
  387. "o15.officeredir.microsoft.com",
  388. "ocos-office365-s2s.msedge.net",
  389. "ocsa.officeapps.live.com",
  390. "ocsp.digicert.com",
  391. "ocsp.globalsign.com",
  392. "ocsp.msocsp.com",
  393. "ocsp2.globalsign.com",
  394. "ocspx.digicert.com",
  395. "ocsredir.officeapps.live.com",
  396. "ocws.officeapps.live.com",
  397. "odc.officeapps.live.com",
  398. "office.live.com",
  399. "office15client.microsoft.com",
  400. "officeapps.live.com",
  401. "officecdn.microsoft.com",
  402. "officecdn.microsoft.com.edgesuite.net",
  403. "officeclient.microsoft.com",
  404. "officehome.msocdn.us",
  405. "officepreviewredir.microsoft.com",
  406. "officeredir.microsoft.com",
  407. "officespeech.platform.bing.com",
  408. "ols.officeapps.live.com",
  409. "oneclient.sfx.ms",
  410. "oneocsp.microsoft.com",
  411. "otelrules.azureedge.net",
  412. "outlook-dod.office365.us",
  413. "outlook.cloud.microsoft",
  414. "outlook.office.com",
  415. "outlook.office365.com",
  416. "outlook.office365.us",
  417. "partner.outlook.cn",
  418. "partnerservices.getmicrosoftkey.com",
  419. "passwordreset.microsoftonline.com",
  420. "pf.events.data.microsoft.com",
  421. "pf.pipe.aria.microsoft.com",
  422. "platform.linkedin.com",
  423. "portal.apps.mil",
  424. "portal.partner.microsoftonline.cdnsvc.com",
  425. "prod.msocdn.com",
  426. "protection.office.com",
  427. "provisioningapi.microsoftonline.com",
  428. "purview.apps.mil",
  429. "purview.microsoft.com",
  430. "purview.microsoft.us",
  431. "r.office.microsoft.com",
  432. "r4.partner.outlook.cn",
  433. "reports.apps.mil",
  434. "scc.office365.us",
  435. "scc.protection.apps.mil",
  436. "secure.aadcdn.microsoftonline-p.com",
  437. "secure.globalsign.com",
  438. "security.apps.mil",
  439. "security.microsoft.com",
  440. "security.microsoft.us",
  441. "shellprod.msocdn.com",
  442. "signup.live.com",
  443. "smtp.office365.com",
  444. "spoprod-a.akamaihd.net",
  445. "statics.teams.microsoft.com",
  446. "storage.live.com",
  447. "support.microsoft.com",
  448. "sway.com",
  449. "tasks.office365.us",
  450. "tb.events.data.microsoft.com",
  451. "tb.pipe.aria.microsoft.com",
  452. "teams.cloud.microsoft",
  453. "teams.microsoft.com",
  454. "teams.microsoftonline.cn",
  455. "technet.microsoft.com",
  456. "tse1.mm.bing.net",
  457. "webmail.apps.mil",
  458. "webshell.dodsuite.office365.us",
  459. "wus-www.sway-cdn.com",
  460. "wus-www.sway-extensions.com",
  461. "www.acompli.com",
  462. "www.bing.com",
  463. "www.digicert.com",
  464. "www.microsoft.com",
  465. "www.microsoft365.com",
  466. "www.office365.us",
  467. "www.ohome.apps.mil",
  468. "www.onedrive.com",
  469. "www.outlook.com",
  470. "www.sway.com"
  471. ]
  472. =====================================================
  473. smart_switch_list.json
  474. [
  475. {
  476. "category": "shopping",
  477. "sites": [
  478. // Alibaba
  479. "alibaba.com",
  480. "aliexpress.ar",
  481. "aliexpress.de",
  482. "aliexpress.com",
  483. "aliexpress.es",
  484. "aliexpress.fr",
  485. "aliexpress.il",
  486. "aliexpress.it",
  487. "aliexpress.jp",
  488. "aliexpress.kr",
  489. "aliexpress.nl",
  490. "aliexpress.pl",
  491. "aliexpress.pt",
  492. "aliexpress.ru",
  493. "aliexpress.th",
  494. "aliexpress.tr",
  495. "aliexpress.vn",
  496. "1688.com",
  497. "tmall.com",
  498. "taobao.com",
  499. // Amazon
  500. "amazon.com",
  501. "amazon.com.au",
  502. "amazon.at",
  503. "amazon.be",
  504. "amazon.com.br",
  505. "amazon.ca",
  506. "amazon.cn",
  507. "amazon.eg",
  508. "amazon.fr",
  509. "amazon.de",
  510. "amazon.in",
  511. "amazon.co.id",
  512. "amazon.it",
  513. "amazon.co.jp",
  514. "amazon.com.mx",
  515. "amazon.nl",
  516. "amazon.pl",
  517. "amazon.sa",
  518. "amazon.sg",
  519. "amazon.co.kr",
  520. "amazon.es",
  521. "amazon.se",
  522. "amazon.ch",
  523. "amazon.com.tr",
  524. "amazon.ae",
  525. "amazon.co.uk",
  526. // Apple
  527. "apple.com",
  528. // Best Buy
  529. "bestbuy.com",
  530. "bestbuy.ca",
  531. "bestbuy.com.mx",
  532. // Costco
  533. "costco.com",
  534. "costco.com.au",
  535. "costco.ca",
  536. "costco.co.jp",
  537. "costco.com.mx",
  538. "costco.co.kr",
  539. "costco.com.tw",
  540. "costco.co.uk",
  541. // eBay
  542. "ebay.com",
  543. "ebay.com.au",
  544. "ebay.at",
  545. "ebay.be",
  546. "ebay.ca",
  547. "ebay.com.cn",
  548. "ebay.fr",
  549. "ebay.de",
  550. "ebay.com.hk",
  551. "ebay.in",
  552. "ebay.ie",
  553. "ebay.it",
  554. "ebay.co.jp",
  555. "auction.co.kr",
  556. "ebay.com.my",
  557. "ebay.nl",
  558. "ebay.ph",
  559. "ebay.pl",
  560. "ebay.com.sg",
  561. "ebay.es",
  562. "ebay.se",
  563. "ebay.ch",
  564. "ebay.co.uk",
  565. // Etsy
  566. "etsy.com",
  567. // Flipkart
  568. "flipkart.com",
  569. // Home Depot
  570. "homedepot.com",
  571. "homedepot.ca",
  572. // Kroger
  573. "kroger.com",
  574. // Lowes
  575. "lowes.com",
  576. // Publix
  577. "publix.com",
  578. // Safeway
  579. "safeway.com",
  580. // Target
  581. "target.com",
  582. // Walmart
  583. "walmart.com",
  584. "walmart.ca",
  585. "walmart.com.br",
  586. "walmart.com.mx",
  587. "asda.com",
  588. // Williams Sonoma
  589. "williams-sonoma.com",
  590. "williams-sonoma.com.au",
  591. "williams-sonoma.ca",
  592. "williams-sonoma.co.uk"
  593. ]
  594. }
  595. ]
Advertisement
Add Comment
Please, Sign In to add comment