Others cookie for grammar

Currently reading:
 Others cookie for grammar

CrackAZ

Member
LV
1
Joined
Feb 1, 2022
Threads
15
Likes
5
Awards
4
Credits
3,340©
Cash
0$
data = '''[
{
"domain": ".grammarly.com",
"expirationDate": 1683124196,
"hostOnly": false,
"httpOnly": false,
"name": "isGrammarlyUser",
"path": "/",
"sameSite": null,
"secure": false,
"session": false,
"storeId": null,
"value": "true"
},
{
"domain": ".grammarly.com",
"expirationDate": 1698071396.773166,
"hostOnly": false,
"httpOnly": true,
"name": "grauth",
"path": "/",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": null,
"value": "AABMEd-PxG1FmbX69GUG_cjcbhsvkH4IKlbq3yiKKqk0iL1JJyvlDLF0p7UQE_fqOp7eDVxEuiAmJw6Y"
},
{
"domain": ".grammarly.com",
"expirationDate": 1718349430,
"hostOnly": false,
"httpOnly": false,
"name": "_ga_CBK9K2ZWWE",
"path": "/",
"sameSite": null,
"secure": false,
"session": false,
"storeId": null,
"value": "GS1.1.1655277384.263.0.1655277430.14"
},
{
"domain": ".grammarly.com",
"expirationDate": 1705596058,
"hostOnly": false,
"httpOnly": false,
"name": "driftt_aid",
"path": "/",
"sameSite": null,
"secure": true,
"session": false,
"storeId": null,
"value": "8e7e6e2e-a4df-4e45-886d-04759d07d9cb"
},
{
"domain": ".grammarly.com",
"expirationDate": 1698290465.908713,
"hostOnly": false,
"httpOnly": false,
"name": "experiment_groups",
"path": "/",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": null,
"value": "fsrw_in_sidebar_allusers_enabled|extension_new_rich_text_fields_enabled|officeaddin_outcomes_ui_exp5_enabled1|gdocs_for_chrome_enabled|gb_tone_detector_onboarding_flow_enabled|completions_beta_enabled|kaza_security_hub_enabled|premium_ungating_renewal_notification_enabled|quarantine_messages_enabled|small_hover_menus_existing_enabled|gb_snippets_csv_upload_enabled|grammarly_web_ukraine_logo_dapi_enabled|gb_in_editor_premium_Test1|officeaddin_upgrade_state_exp2_enabled1|gb_analytics_mvp_phase_one_enabled|gb_rbac_new_members_ui_enabled|ipm_extension_release_test_1|snippets_in_ws_gate_enabled|gb_analytics_group_filters_enabled|extension_assistant_bundles_all_enabled




User
how do i get the value of domain, fast
ChatGPT
To extract the values of the "domain" property from each object in the JSON array, you can use the following Python code:

python
Copy code
import json

data = '''
[
{
"domain": ".grammarly.com",
"expirationDate": 1683124196,
"hostOnly": false,
"httpOnly": false,
"name": "isGrammarlyUser",
"path": "/",
"sameSite": null,
"secure": false,
"session": false,
"storeId": null,
"value": "true"
},
{
"domain": ".grammarly.com",
"expirationDate": 1698071396.773166,
"hostOnly": false,
"httpOnly": true,
"name": "grauth",
"path": "/",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": null,
"value": "AABMEd-PxG1FmbX69GUG_cjcbhsvkH4IKlbq3yiKKqk0iL1JJyvlDLF0p7UQE_fqOp7eDVxEuiAmJw6Y"
},
{
"domain": ".grammarly.com",
"expirationDate": 1718349430,
"hostOnly": false,
"httpOnly": false,
"name": "_ga_CBK9K2ZWWE",
"path": "/",
"sameSite": null,
"secure": false,
"session": false,
"storeId": null,
"value": "GS1.1.1655277384.263.0.1655277430.14"
},
{
"domain": ".grammarly.com",
"expirationDate": 1705596058,
"hostOnly": false,
"httpOnly": false,
"name": "driftt_aid",
"path": "/",
"sameSite": null,
"secure": true,
"session": false,
"storeId": null,
"value": "8e7e6e2e-a4df-4e45-886d-04759d07d9cb"
},
{
"domain": ".grammarly.com",
"expirationDate": 1698290465.908713,
"hostOnly": false,
"httpOnly": false,
"name": "experiment_groups",
"path": "/",
"sameSite": "no_restriction",
"secure": true,
"session": false,
"storeId": null,
"value": "fsrw_in_sidebar_allusers_enabled|extension_new_rich_text_fields_enabled|officeaddin_outcomes_ui_exp5_enabled1|gdocs_for_chrome_enabled|gb_tone_detector_onboarding_flow_enabled|completions_beta_enabled|kaza_security_hub_enabled|premium_ungating_renewal_notification_enabled|quarantine_messages_enabled|small_hover_menus_existing_enabled|gb_snippets_csv_upload_enabled|grammarly_web_ukraine_logo_dapi_enabled|gb_in_editor_premium_Test1|officeaddin_upgrade_state_exp2_enabled1|gb_analytics_mvp_phase_one_enabled|gb_rbac_new_members_ui_enabled|ipm_extension_release_test_1|snippets_in_ws_gate_enabled|gb_analytics_group_filters_enabled|extension_assistant_bundles_all_enabled
}
]
'''
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips

Similar threads

Top Bottom