diff --git a/.hgignore b/.hgignore index d4d2265d7163..1fc048aca340 100644 --- a/.hgignore +++ b/.hgignore @@ -168,7 +168,6 @@ _OPT\.OBJ/ ^testing/talos/talos/tests/devtools/damp.manifest.develop ^testing/talos/talos/startup_test/startup_about_home_paint/startup_about_home_paint.manifest.develop ^testing/talos/talos/webextensions/ -^testing/talos/talos/tests/about-newtab/about_newtab.manifest.develop ^talos-venv ^py3venv ^testing/talos/talos/mitmproxy/mitmdump diff --git a/browser/components/newtab/lib/ASRouter.jsm b/browser/components/newtab/lib/ASRouter.jsm index 8b58973fd2f2..2a754ab643f5 100644 --- a/browser/components/newtab/lib/ASRouter.jsm +++ b/browser/components/newtab/lib/ASRouter.jsm @@ -130,21 +130,6 @@ const MessageLoaderUtils = { return provider.messages; }, - async _localJsonLoader(provider) { - let payload; - try { - payload = await ( - await fetch(provider.location, { - credentials: "omit", - }) - ).json(); - } catch (e) { - return []; - } - - return payload.messages; - }, - async _remoteLoaderCache(storage) { let allCached; try { @@ -417,8 +402,6 @@ const MessageLoaderUtils = { return this._remoteLoader; case "remote-settings": return this._remoteSettingsLoader; - case "json": - return this._localJsonLoader; case "remote-experiments": return this._experimentsAPILoader; case "local": diff --git a/browser/components/newtab/test/unit/asrouter/ASRouter.test.js b/browser/components/newtab/test/unit/asrouter/ASRouter.test.js index 126f9c7f86f2..bb1941e3418c 100644 --- a/browser/components/newtab/test/unit/asrouter/ASRouter.test.js +++ b/browser/components/newtab/test/unit/asrouter/ASRouter.test.js @@ -2728,25 +2728,6 @@ describe("ASRouter", () => { group: "cfr", }); }); - it("should fetch json from url", async () => { - let result = await MessageLoaderUtils.loadMessagesForProvider({ - location: "http://fake.com/endpoint", - type: "json", - }); - - assert.property(result, "messages"); - assert.lengthOf(result.messages, FAKE_REMOTE_MESSAGES.length); - }); - it("should catch errors", async () => { - fetchStub.throws(); - let result = await MessageLoaderUtils.loadMessagesForProvider({ - location: "http://fake.com/endpoint", - type: "json", - }); - - assert.property(result, "messages"); - assert.lengthOf(result.messages, 0); - }); }); describe("#_remoteSettingsLoader", () => { let provider; diff --git a/testing/perfdocs/generated/talos.rst b/testing/perfdocs/generated/talos.rst index e0cbca8e6fde..4e925523511e 100644 --- a/testing/perfdocs/generated/talos.rst +++ b/testing/perfdocs/generated/talos.rst @@ -58,7 +58,7 @@ figure out what suites and tests are available to run. # Available suites: # bcv (basic_compositor_video) - # chromez (about_preferences_basic:tresize:about_newtab_with_snippets) + # chromez (about_preferences_basic:tresize) # dromaeojs (dromaeo_css:kraken) # flex (tart_flex:ts_paint_flex) # ... @@ -77,10 +77,6 @@ figure out what suites and tests are available to run. # This test ensures basic a11y tables and permutations do not cause # performance regressions. # - # about_newtab_with_snippets - # -------------------------- - # Load about ActivityStream (about:home and about:newtab) with snippets enabled - # # ... # Run the tests in "a11yr" listed above diff --git a/testing/talos/perfdocs/index.rst b/testing/talos/perfdocs/index.rst index e0cbca8e6fde..4e925523511e 100644 --- a/testing/talos/perfdocs/index.rst +++ b/testing/talos/perfdocs/index.rst @@ -58,7 +58,7 @@ figure out what suites and tests are available to run. # Available suites: # bcv (basic_compositor_video) - # chromez (about_preferences_basic:tresize:about_newtab_with_snippets) + # chromez (about_preferences_basic:tresize) # dromaeojs (dromaeo_css:kraken) # flex (tart_flex:ts_paint_flex) # ... @@ -77,10 +77,6 @@ figure out what suites and tests are available to run. # This test ensures basic a11y tables and permutations do not cause # performance regressions. # - # about_newtab_with_snippets - # -------------------------- - # Load about ActivityStream (about:home and about:newtab) with snippets enabled - # # ... # Run the tests in "a11yr" listed above diff --git a/testing/talos/talos.json b/testing/talos/talos.json index 1478029fd8f0..4ea60e2e846e 100644 --- a/testing/talos/talos.json +++ b/testing/talos/talos.json @@ -4,7 +4,7 @@ "tests": ["basic_compositor_video"] }, "chromez": { - "tests": ["about_preferences_basic", "tresize", "about_newtab_with_snippets"] + "tests": ["about_preferences_basic", "tresize"] }, "dromaeojs": { "tests": ["dromaeo_css", "kraken"] diff --git a/testing/talos/talos/test.py b/testing/talos/talos/test.py index c3a3b42e4f16..dd6cb034e35f 100644 --- a/testing/talos/talos/test.py +++ b/testing/talos/talos/test.py @@ -1218,36 +1218,3 @@ class about_preferences_basic(PageloaderTest): unit = "ms" lower_is_better = True fnbpaint = True - - -@register_test() -class about_newtab_with_snippets(PageloaderTest): - """ - Load about ActivityStream (about:home and about:newtab) with snippets enabled - """ - - tpmanifest = "${talos}/tests/about-newtab/about_newtab.manifest" - tpcycles = 25 - tppagecycles = 1 - responsiveness = True - gecko_profile_interval = 1 - gecko_profile_entries = 2000000 - filters = filter.ignore_first.prepare(5) + filter.median.prepare() - unit = "ms" - lower_is_better = True - fnbpaint = True - preferences = { - # ensure that snippets are turned on and load the json messages - "browser.newtabpage.activity-stream.asrouter.providers.snippets": '{"id":"snippets","enabled":true,"type":"json","location":\ - "http://fakedomain/tests/about-newtab/snippets.json",\ - "updateCycleInMs":14400000}', - "browser.newtabpage.activity-stream.feeds.snippets": True, - "browser.newtabpage.activity-stream.feeds.system.topstories": True, - "browser.newtabpage.activity-stream.feeds.section.topstories": True, - "browser.newtabpage.activity-stream.feeds.section.topstories.options": '{"provider_name":""}', # NOQA: E501 - "browser.newtabpage.activity-stream.discoverystream.endpoints": "http://fakedomain", - "browser.newtabpage.activity-stream.discoverystream.config": '{"api_key_pref":"extensions.pocket.oAuthConsumerKey","collapsible":true,\ - "enabled":true,"show_spocs":false,"hardcoded_layout":false,"personalized":true,\ - "layout_endpoint":\ - "http://fakedomain/tests/about-newtab/ds_layout.json"}', - } diff --git a/testing/talos/talos/tests/about-newtab/about_newtab.manifest b/testing/talos/talos/tests/about-newtab/about_newtab.manifest deleted file mode 100644 index 5242fe952d66..000000000000 --- a/testing/talos/talos/tests/about-newtab/about_newtab.manifest +++ /dev/null @@ -1,6 +0,0 @@ -about:newtab -about:home -about:newtab -about:home -about:newtab -about:home diff --git a/testing/talos/talos/tests/about-newtab/ds_layout.json b/testing/talos/talos/tests/about-newtab/ds_layout.json deleted file mode 100644 index 2eaff1d236d4..000000000000 --- a/testing/talos/talos/tests/about-newtab/ds_layout.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "spocs": { - "url": "" - }, - "layout": [ - { - "width": 12, - "components": [ - { - "type": "TopSites", - "header": { - "title": "Top Sites" - }, - "properties": null - }, - { - "type": "Message", - "header": { - "title": "Recommended by Pocket", - "subtitle": "", - "link_text": "How it works", - "link_url": "https://getpocket.com/firefox/new_tab_learn_more", - "icon": "chrome://global/skin/icons/pocket.svg" - }, - "properties": null, - "styles": { - ".ds-message": "margin-bottom: -20px" - } - }, - { - "type": "CardGrid", - "properties": { - "items": 3 - }, - "header": { - "title": "" - }, - "feed": { - "embed_reference": null, - "url": "http://fakedomain/tests/about-newtab/topstories.json" - }, - "spocs": { - "probability": 1, - "positions": [ - { - "index": 2 - } - ] - } - }, - { - "type": "Navigation", - "properties": { - "alignment": "left-align", - "links": [ - { - "name": "Must Reads", - "url": "https://getpocket.com/explore/must-reads?src=fx_new_tab" - }, - { - "name": "Productivity", - "url": "https://getpocket.com/explore/productivity?src=fx_new_tab" - }, - { - "name": "Health", - "url": "https://getpocket.com/explore/health?src=fx_new_tab" - }, - { - "name": "Finance", - "url": "https://getpocket.com/explore/finance?src=fx_new_tab" - }, - { - "name": "Technology", - "url": "https://getpocket.com/explore/technology?src=fx_new_tab" - }, - { - "name": "More Recommendations ›", - "url": "https://getpocket.com/explore/trending?src=fx_new_tab" - } - ] - } - } - ] - } - ], - "feeds": {}, - "error": 0, - "status": 1 -} diff --git a/testing/talos/talos/tests/about-newtab/snippets.json b/testing/talos/talos/tests/about-newtab/snippets.json deleted file mode 100644 index d3815cbdafc0..000000000000 --- a/testing/talos/talos/tests/about-newtab/snippets.json +++ /dev/null @@ -1 +0,0 @@ -{"messages": [{"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Have a lightning-fast browsing experience at only 6MB in size.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/625da812-6355-4d91-9ede-99d89594dc86.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22152&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22152&utm_content=REL"}}}, "id": "22152", "weight": 33, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['IN']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can discover and plan your next adventure with our new travel feature.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/4da4ee76-359e-41f5-8966-17265d46d1a3.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22153&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22153&utm_content=REL"}}}, "id": "22153", "weight": 33, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['IN']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can catch up on the latest trending news from major news sites.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e8e83019-2c6b-4f41-9f24-f2d1553cd015.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22154&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22154&utm_content=REL"}}}, "id": "22154", "weight": 33, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['IN']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can play more than 100 popular free games.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/57c35ea8-a8ad-47e1-af0c-6da4c525bdda.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22155&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22155&utm_content=REL"}}}, "id": "22155", "weight": 33, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['IN']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can easily compare prices across multiple shopping sites at once.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/994035d0-52fc-4236-b8a1-16119a0f2af6.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22156&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22156&utm_content=REL"}}}, "id": "22156", "weight": 33, "campaign": "p100-fx-lite-q1-2020", "targeting": "true"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Have a lightning-fast browsing experience at only 6MB in size.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/625da812-6355-4d91-9ede-99d89594dc86.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22157&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22157&utm_content=REL"}}}, "id": "22157", "weight": 10, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['ID']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can discover and plan your next adventure with our new travel feature.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/4da4ee76-359e-41f5-8966-17265d46d1a3.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22158&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22158&utm_content=REL"}}}, "id": "22158", "weight": 10, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['ID']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can play more than 100 popular free games.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/57c35ea8-a8ad-47e1-af0c-6da4c525bdda.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22160&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22160&utm_content=REL"}}}, "id": "22160", "weight": 10, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['ID']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can catch up on the latest trending news from major news sites.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e8e83019-2c6b-4f41-9f24-f2d1553cd015.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22159&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22159&utm_content=REL"}}}, "id": "22159", "weight": 10, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['ID']"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Try the brand new Firefox Lite for Android. Fast and lightweight, now you can easily compare prices across multiple shopping sites at once.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/994035d0-52fc-4236-b8a1-16119a0f2af6.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22161&utm_content=REL", "scene2_text": "Scan the QR code or enter your email to download Firefox Lite!", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/a9393024-d477-4518-90ee-020d5b2db9c2.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-rocket", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fx-lite-q1-2020&utm_term=22161&utm_content=REL"}}}, "id": "22161", "weight": 10, "campaign": "p100-fx-lite-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['ID']"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Wallet. Keys. Phone. Firefox. Don\u2019t leave home without privacy on all your devices.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "button_label": "Get Firefox for Mobile.", "button_url": "https://www.mozilla.org/en-US/firefox/mobile/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=FxMobileApp_Sync&utm_term=22310&utm_content=rel_dev__beta", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22310&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22310", "weight": 33, "campaign": "fxa-sync-q1-2020", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == true && ((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['AT', 'BR', 'CA', 'FR', 'DE', 'IN', 'PL', 'RU', 'ES', 'CH', 'GB', 'AF', 'QZ', 'AX', 'AL', 'DZ', 'AS', 'AD', 'AO', 'AI', 'AQ', 'AG', 'AR', 'AM', 'AW', 'XA', 'AU', 'AZ', 'BS', 'BH', 'XB', 'BD', 'BB', 'QS', 'BY', 'BE', 'BZ', 'BJ', 'BM', 'BT', 'BO', 'BQ', 'BA', 'BW', 'BV', 'IO', 'BN', 'BG', 'BF', 'MM', 'BI', 'CV', 'KH', 'CM', 'KY', 'CF', 'TD', 'CL', 'CN', 'CX', 'CP', 'CC', 'CO', 'KM', 'CG', 'CD', 'CK', 'XC', 'CR', 'CI', 'HR', 'CU', 'CW', 'CY', 'CZ', 'DK', 'XD', 'DG', 'DJ', 'DM', 'DO', 'EC', 'EG', 'SV', 'GQ', 'ER', 'EE', 'ET', 'XE', 'FK', 'FO', 'FJ', 'FI', 'GF', 'PF', 'TF', 'GA', 'GM', 'XG', 'GE', 'GH', 'GI', 'QX', 'GR', 'GL', 'GD', 'GP', 'GU', 'GT', 'GG', 'GN', 'GW', 'GY', 'HT', 'HM', 'HN', 'HK', 'XH', 'HU', 'IS', 'ID', 'IR', 'IQ', 'IE', 'IM', 'IL', 'IT', 'JM', 'XJ', 'JP', 'XQ', 'JE', 'XU', 'JO', 'QU', 'KZ', 'KE', 'XM', 'KI', 'KP', 'KR', 'XK', 'KW', 'KG', 'LA', 'LV', 'LB', 'LS', 'LR', 'LY', 'LI', 'LT', 'LU', 'MO', 'MK', 'MG', 'MW', 'MY', 'MV', 'ML', 'MT', 'MH', 'MQ', 'MR', 'MU', 'YT', 'MX', 'FM', 'QM', 'MD', 'MC', 'MN', 'ME', 'MS', 'MA', 'MZ', 'NA', 'NR', 'XV', 'NP', 'NL', 'AN', 'NC', 'NZ', 'NI', 'NE', 'NG', 'NU', 'NF', 'MP', 'NO', 'PS', 'OM', 'PK', 'PW', 'XL', 'PA', 'PG', 'XP', 'PY', 'PE', 'PH', 'PN', 'PT', 'PR', 'QA', 'RE', 'RO', 'RW', 'BL', 'SH', 'KN', 'LC', 'MF', 'PM', 'VC', 'WS', 'SM', 'ST', 'SA', 'SN', 'RS', 'SC', 'SL', 'SG', 'SX', 'SK', 'SI', 'SB', 'SO', 'ZA', 'GS', 'SS', 'XS', 'LK', 'SD', 'SR', 'XR', 'SJ', 'SZ', 'SE', 'SY', 'TW', 'TJ', 'TZ', 'TH', 'TL', 'TG', 'TK', 'TO', 'TT', 'XT', 'TN', 'TR', 'TM', 'TC', 'TV', 'UG', 'UA', 'AE', 'UM', 'UY', 'UZ', 'VU', 'VA', 'VE', 'VN', 'VG', 'VI', 'QW', 'WF', 'XW', 'EH', 'YE', 'ZM', 'ZW'] && sync.mobileDevices < 1"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Wallet. Keys. Phone. Firefox. Don\u2019t leave home without privacy on all your devices.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "button_label": "Get Firefox for Mobile.", "button_url": "https://accounts.firefox.com/sms/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22312&utm_content=REL", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22312&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22312", "weight": 33, "campaign": "fxa-sync-q1-2020", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == true && ((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Take privacy on every device and leave the data trackers behind.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "button_label": "Get the Firefox App", "button_url": "https://www.mozilla.org/en-US/firefox/mobile/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=FxMobileApp_Sync&utm_term=22314&utm_content=rel_dev_beta", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22314&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22314", "weight": 33, "campaign": "fxa-sync-q1-2020", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == true && ((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['AT', 'BR', 'CA', 'FR', 'DE', 'IN', 'PL', 'RU', 'ES', 'CH', 'GB', 'AF', 'QZ', 'AX', 'AL', 'DZ', 'AS', 'AD', 'AO', 'AI', 'AQ', 'AG', 'AR', 'AM', 'AW', 'XA', 'AU', 'AZ', 'BS', 'BH', 'XB', 'BD', 'BB', 'QS', 'BY', 'BE', 'BZ', 'BJ', 'BM', 'BT', 'BO', 'BQ', 'BA', 'BW', 'BV', 'IO', 'BN', 'BG', 'BF', 'MM', 'BI', 'CV', 'KH', 'CM', 'KY', 'CF', 'TD', 'CL', 'CN', 'CX', 'CP', 'CC', 'CO', 'KM', 'CG', 'CD', 'CK', 'XC', 'CR', 'CI', 'HR', 'CU', 'CW', 'CY', 'CZ', 'DK', 'XD', 'DG', 'DJ', 'DM', 'DO', 'EC', 'EG', 'SV', 'GQ', 'ER', 'EE', 'ET', 'XE', 'FK', 'FO', 'FJ', 'FI', 'GF', 'PF', 'TF', 'GA', 'GM', 'XG', 'GE', 'GH', 'GI', 'QX', 'GR', 'GL', 'GD', 'GP', 'GU', 'GT', 'GG', 'GN', 'GW', 'GY', 'HT', 'HM', 'HN', 'HK', 'XH', 'HU', 'IS', 'ID', 'IR', 'IQ', 'IE', 'IM', 'IL', 'IT', 'JM', 'XJ', 'JP', 'XQ', 'JE', 'XU', 'JO', 'QU', 'KZ', 'KE', 'XM', 'KI', 'KP', 'KR', 'XK', 'KW', 'KG', 'LA', 'LV', 'LB', 'LS', 'LR', 'LY', 'LI', 'LT', 'LU', 'MO', 'MK', 'MG', 'MW', 'MY', 'MV', 'ML', 'MT', 'MH', 'MQ', 'MR', 'MU', 'YT', 'MX', 'FM', 'QM', 'MD', 'MC', 'MN', 'ME', 'MS', 'MA', 'MZ', 'NA', 'NR', 'XV', 'NP', 'NL', 'AN', 'NC', 'NZ', 'NI', 'NE', 'NG', 'NU', 'NF', 'MP', 'NO', 'PS', 'OM', 'PK', 'PW', 'XL', 'PA', 'PG', 'XP', 'PY', 'PE', 'PH', 'PN', 'PT', 'PR', 'QA', 'RE', 'RO', 'RW', 'BL', 'SH', 'KN', 'LC', 'MF', 'PM', 'VC', 'WS', 'SM', 'ST', 'SA', 'SN', 'RS', 'SC', 'SL', 'SG', 'SX', 'SK', 'SI', 'SB', 'SO', 'ZA', 'GS', 'SS', 'XS', 'LK', 'SD', 'SR', 'XR', 'SJ', 'SZ', 'SE', 'SY', 'TW', 'TJ', 'TZ', 'TH', 'TL', 'TG', 'TK', 'TO', 'TT', 'XT', 'TN', 'TR', 'TM', 'TC', 'TV', 'UG', 'UA', 'AE', 'UM', 'UY', 'UZ', 'VU', 'VA', 'VE', 'VN', 'VG', 'VI', 'QW', 'WF', 'XW', 'EH', 'YE', 'ZM', 'ZW'] && sync.mobileDevices < 1"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Take privacy on every device and leave the data trackers behind.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "button_label": "Get the Firefox App", "button_url": "https://accounts.firefox.com/sms/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22316&utm_content=REL", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22316&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22316", "weight": 33, "campaign": "fxa-sync-q1-2020", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == true && ((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "The data universe keeps expanding. Don\u2019t accept the defaults. Get a Firefox Account to keep your info protected in this new frontier.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "button_label": "Sign up now", "button_url": "https://accounts.firefox.com/signin?action=email&utm_source=desktop-snippet&utm_campaign=fxa_sync_2019&utm_term=22318&service=sync&context=fx_desktop_v3&entrypoint=snippets&utm_content=66&utm_medium=snippet", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=fxa-sync-q1-2020&utm_term=22318&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22318", "weight": 33, "campaign": "fxa-sync-q1-2020", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "What was the most popular article of 2019?", "icon": "https://snippets.cdn.mozilla.net/media/icons/3250ec21-55ba-42d7-9e4f-3ccc0e4ed076.png", "button_label": "The results are in", "button_url": "https://getpocket.com/explore/best-articles-2019?utm_medium=firefox&utm_source=snippet&utm_campaign=best-of-2019&utm_content=whats-most-popular&utm_term=22282", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=pocket-q1-2020&utm_term=22282&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22282", "weight": 10, "campaign": "pocket-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "What was the most popular article of 2019? Find out with Pocket\u2019s Best of 2019 awards.", "icon": "https://snippets.cdn.mozilla.net/media/icons/3250ec21-55ba-42d7-9e4f-3ccc0e4ed076.png", "button_label": "The results are in", "button_url": "https://getpocket.com/explore/best-articles-2019?utm_medium=firefox&utm_source=snippet&utm_campaign=best-of-2019&utm_content=what-was-most-popular&utm_term=22278", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=pocket-q1-2020&utm_term=22278&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "22278", "weight": 10, "campaign": "pocket-q1-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Crypto what? Cryptominers. They slow your phone and drain your battery to make a quick buck. We block them.", "icon": "https://snippets.cdn.mozilla.net/media/icons/28ce03d4-6295-4a41-988b-9b0edc31af15.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=firefox-blog-2020&utm_term=22299&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://blog.mozilla.org/firefox/block-cryptominers-with-firefox/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=firefox-blog-2020&utm_term=22299&utm_content=REL"}}}, "id": "22299", "weight": 10, "campaign": "firefox-blog-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Be part of a movement.", "scene1_text": "Internet shutdowns, hackers, harassment \u2014 the health of the internet is on the line. Sign up and Mozilla will keep you updated on how you can help.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/c46c6cdf-ef2d-460a-9009-8c1ccbbe84c6.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-moz-newsletter-sign-2020&utm_term=22290&utm_content=REL", "scene2_text": "Sign up for the Mozilla newsletter and we will keep you updated on how you can help.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-foundation", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice.", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-moz-newsletter-sign-2020&utm_term=22290&utm_content=REL"}}}, "id": "22290", "weight": 10, "campaign": "p100-moz-newsletter-sign-2020", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Behind closed doors, India\u2019s government is finalizing new rules which could put your privacy and access to knowledge in danger. Sign this petition to push the government to make their plans public before they become law.", "icon": "https://snippets.cdn.mozilla.net/media/icons/bd9417ce-b746-4eb2-8ff1-ef0f7e6ad28a.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=mofo-india-petition&utm_term=22207&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://foundation.mozilla.org/en/campaigns/india-intermediary-liability-campaign/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=mofo-india-petition&utm_term=22207&utm_content=REL"}}}, "id": "22207", "weight": 33, "campaign": "mofo-india-petition", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 17 && region in ['IN']"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Connect your Firefox Account to Sync your protected passwords, open tabs and bookmarks, and they'll always be available to you \u2014 on all of your devices.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=p100-fxa-sync-q4-2019&utm_term=21599&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://accounts.firefox.com/signin?action=email&utm_source=desktop-snippet&utm_campaign=fxa_sync_2019&utm_term=21599&service=sync&context=fx_desktop_v3&entrypoint=snippets&utm_content=66&utm_medium=snippet"}}}, "id": "21599", "weight": 300, "campaign": "p100-fxa-sync-q4-2019", "targeting": "64 <= firefoxVersion && firefoxVersion < 68 && (isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false", "frequency": {"custom": [{"period": 604800000, "cap": 4}]}}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "It\u2019s not just you - passwords are a pain. Join Firefox to safely stash your PW\u2019s with Lockwise", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Join Now", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week3_fxa_with&utm_term=21376&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=21376&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21376", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "It\u2019s not just you - passwords are a pain. Join Firefox to safely stash your PW\u2019s with Lockwise", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Join Now", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week6_fxa_with&utm_term=21374&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=21374&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21374", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "It\u2019s not just you - passwords are a pain. Join Firefox to safely stash your PW\u2019s with Lockwise.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Join Now", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week9_fxa_with&utm_term=21373&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=21373&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21373", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Walking away from your computer doesn\u2019t mean you have to walk away from your three (... or 30 or 300) tabs. Send tabs across all devices with a Firefox account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21155&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21155", "utm_campaign": "f100_week7_nofxa_walking", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21155", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Walking away from your computer doesn\u2019t mean you have to walk away from your three (... or 30 or 300) tabs. Send tabs across all devices with a Firefox account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21153&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21153", "utm_campaign": "f100_week10_nofxa_walking", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21153", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Bookmark a recipe at home. Check it at the market from your phone. Every bookmark you save is instantly added to your synced devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21151&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21151", "utm_campaign": "f100_week1_nofxa_bookmark", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21151", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Walking away from your computer doesn\u2019t mean you have to walk away from your three (... or 30 or 300) tabs. Send tabs across all devices with a Firefox account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21149&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21149", "utm_campaign": "f100_week1_nofxa_walking", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21149", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Walking away from your computer doesn\u2019t mean you have to walk away from your three (... or 30 or 300) tabs. Send tabs across all devices with a Firefox account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21148&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21148", "utm_campaign": "f100_week4_nofxa_walking", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21148", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Bookmark a recipe at home. Check it at the market from your phone. Every bookmark you save is instantly added to your synced devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21138&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21138", "utm_campaign": "f100_week16_nofxa_bookmark", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21138", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Bookmark a recipe at home. Check it at the market from your phone. Every bookmark you save is instantly added to your synced devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21137&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21137", "utm_campaign": "f100_week13_nofxa_bookmark", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21137", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Bookmark a recipe at home. Check it at the market from your phone. Every bookmark you save is instantly added to your synced devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21136&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21136", "utm_campaign": "f100_week10_nofxa_bookmark", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21136", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Bookmark a recipe at home. Check it at the market from your phone. Every bookmark you save is instantly added to your synced devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21134&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21134", "utm_campaign": "f100_week7_nofxa_bookmark", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21134", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Bookmark a recipe at home. Check it at the market from your phone. Every bookmark you save is instantly added to your synced devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21133&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21133", "utm_campaign": "f100_week4_nofxa_bookmark", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21133", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Walking away from your computer doesn\u2019t mean you have to walk away from your three (... or 30 or 300) tabs. Send tabs across all devices with a Firefox account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21131&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21131", "utm_campaign": "f100_week16_nofxa_walking", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21131", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Walking away from your computer doesn\u2019t mean you have to walk away from your three (... or 30 or 300) tabs. Send tabs across all devices with a Firefox account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/7fb82260-cac3-4e8e-b5e4-549fb24cf640.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=21130&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "21130", "utm_campaign": "f100_week13_nofxa_walking", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "21130", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse unbound.", "scene1_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21048&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21048", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse unbound.", "scene1_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21047&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21047", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse unbound.", "scene1_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21046&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21046", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse unbound.", "scene1_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21045&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21045", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21044&utm_content=REL", "scene2_text": "Browse without compromise with Firefox Mobile.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21044", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21043&utm_content=REL", "scene2_text": "Browse without compromise with Firefox Mobile.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21043", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21042&utm_content=REL", "scene2_text": "Browse without compromise with Firefox Mobile.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21042", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21041&utm_content=REL", "scene2_text": "Browse without compromise with Firefox Mobile.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "EN", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21041", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile email only&utm_term=21040&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "The intended recipient of the email must have consented. Learn more.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21040", "weight": 50, "campaign": "f100 mobile email only", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3 && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile email only&utm_term=21039&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "The intended recipient of the email must have consented. Learn more.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21039", "weight": 50, "campaign": "f100 mobile email only", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11 && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile email only&utm_term=21038&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "The intended recipient of the email must have consented. Learn more.", "locale": "EN", "country": "us", "include_sms": false, "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21038", "weight": 50, "campaign": "f100 mobile email only", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15 && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Full-featured. Customizable. Lightning fast.", "scene1_text": "Browse without compromise with Firefox Mobile.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile email only&utm_term=21037&utm_content=REL", "scene2_text": "Send Firefox to your phone and take a powerful independent browser with you.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your email address", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "The intended recipient of the email must have consented. Learn more.", "locale": "en", "country": "us", "include_sms": false, "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21037", "weight": 50, "campaign": "f100 mobile email only", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7 && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse without boundaries.", "scene1_text": "Send Firefox to your mobile device for better browsing on the go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21036&utm_content=REL", "scene2_text": "Send Firefox to your mobile device for better browsing on the go.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "en", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21036", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse without boundaries.", "scene1_text": "Send Firefox to your mobile device for better browsing on the go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21035&utm_content=REL", "scene2_text": "Send Firefox to your mobile device for better browsing on the go.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "en", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21035", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse without boundaries.", "scene1_text": "Send Firefox to your mobile device for better browsing on the go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21034&utm_content=REL", "scene2_text": "Send Firefox to your mobile device for better browsing on the go.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "en", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21034", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "send_to_device_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse without boundaries.", "scene1_text": "Send Firefox to your mobile device for better browsing on the go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "scene1_button_label": "Install now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mobile&utm_term=21033&utm_content=REL", "scene2_text": "Send Firefox to your mobile device for better browsing on the go.", "scene2_icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "scene2_button_label": "Send", "scene2_input_placeholder": "Enter your phone number or email", "scene2_dismiss_button_text": "Dismiss", "scene2_disclaimer_html": "SMS service available to U.S. phone numbers only. SMS & data rates may apply. The intended recipient of the email or SMS must have consented. Learn more.", "locale": "en", "country": "US", "include_sms": true, "message_id_sms": "ff-mobilesn-download", "message_id_email": "download-firefox-mobile", "success_title": "Your download link was sent.", "success_text": "Check your device for the email or text message!", "error_text": "There was an error processing your request", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/en-US/privacy/firefox/#snippets"}}}, "id": "21033", "weight": 33, "campaign": "f100 mobile", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3 && region in ['US'] && sync.mobileDevices < 1"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Personalize Firefox with add-ons for privacy, social, gaming, and a whole lot more. Make Firefox yours.", "icon": "https://snippets.cdn.mozilla.net/media/icons/a5ada6c3-c95e-430b-b6ee-1072d7a9133d.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 addons personalize&utm_term=20993&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week1_addons_personalize&utm_term=20993&utm_content=rel"}}}, "id": "20993", "weight": 50, "campaign": "f100 addons personalize", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "The world of scientific research is changing. Mozilla Science Lab empowers scientists to keep up.", "icon": "https://snippets.cdn.mozilla.net/media/icons/05ce933d-8d39-4434-93ee-ece35622a7cc.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 moz science lab&utm_term=20991&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://science.mozilla.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week11_mozsciencelab_v1&utm_term=20991&utm_content=rel"}}}, "id": "20991", "weight": 50, "campaign": "f100 moz science lab", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Always feel like somebody is watching you? Control your data, block malware and outfox the trackers with Firefox\u2019s privacy protection tips.", "icon": "https://snippets.cdn.mozilla.net/media/icons/e61b7f32-4358-4401-b618-39a3e70d23a4.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO privacy tips&utm_term=20983&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/products/firefox/protect-your-privacy?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week12_SUMOprivacytips_watching&utm_term=20983&utm_content=rel"}}}, "id": "20983", "weight": 50, "campaign": "f100 SUMO privacy tips", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Cookies and phishing might sound fun but when it comes to your privacy online, it pays to take them seriously.", "icon": "https://snippets.cdn.mozilla.net/media/icons/36ee940d-37d2-4f73-b928-980f28a45dc2.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO privacy tips&utm_term=20982&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/products/firefox/protect-your-privacy?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week12_SUMOprivacytips_cookies&utm_term=20982&utm_content=rel"}}}, "id": "20982", "weight": 50, "campaign": "f100 SUMO privacy tips", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Help shape the future of the web for the common good \u2014 support open innovation.", "icon": "https://snippets.cdn.mozilla.net/media/icons/296b95b1-f72f-40df-be73-80f594d46c11.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 open innovation&utm_term=20979&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/internet-health/open-innovation/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week13_openinnovation_v2&utm_term=20979&utm_content=rel"}}}, "id": "20979", "weight": 50, "campaign": "f100 open innovation", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "A healthy internet is open for innovation and created by you. Learn how you can make a difference.", "icon": "https://snippets.cdn.mozilla.net/media/icons/296b95b1-f72f-40df-be73-80f594d46c11.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 open innovation&utm_term=20978&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/internet-health/open-innovation/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week13_openinnovation_v1&utm_term=20978&utm_content=rel"}}}, "id": "20978", "weight": 50, "campaign": "f100 open innovation", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Create VR experiences with WebVR in Firefox \u2014 it's powerful, open source and easy to learn.", "icon": "https://snippets.cdn.mozilla.net/media/icons/0e892f3b-d54b-4896-94cc-da4486c79fec.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla VR&utm_term=20973&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://vr.mozilla.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week14_mozvr_v1&utm_term=20973&utm_content=rel"}}}, "id": "20973", "weight": 50, "campaign": "f100 mozilla VR", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "A healthy internet depends on you. Learn how you can make a difference.", "icon": "https://snippets.cdn.mozilla.net/media/icons/6f61c06c-1755-4f1e-8aec-b8e6ebff594e.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 privacy and security&utm_term=20971&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/internet-health/privacy-security/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week14_privacysecurity_v2&utm_term=20971&utm_content=rel"}}}, "id": "20971", "weight": 50, "campaign": "f100 privacy and security", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Experience virtual reality made for your browser with WebVR in Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/0e892f3b-d54b-4896-94cc-da4486c79fec.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla VR&utm_term=20970&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://vr.mozilla.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week14_mozvr_v2&utm_term=20970&utm_content=rel"}}}, "id": "20970", "weight": 50, "campaign": "f100 mozilla VR", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Protect what\u2019s private with encryption. Learn three simple encryption tips to get you started.", "icon": "https://snippets.cdn.mozilla.net/media/icons/26718c3f-9e3b-4d49-a67b-d2e656e758fb.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 advocacy encryption&utm_term=20969&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://advocacy.mozilla.org/en-US/safety/use-encryption?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week16_advocacyencryption_v2&utm_term=20969&utm_content=rel"}}}, "id": "20969", "weight": 50, "campaign": "f100 advocacy encryption", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Look for the lock and protect what\u2019s private. Get more encryption tips to help keep you safe online.", "icon": "https://snippets.cdn.mozilla.net/media/icons/26718c3f-9e3b-4d49-a67b-d2e656e758fb.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 advocacy encryption&utm_term=20968&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://advocacy.mozilla.org/en-US/safety/use-encryption?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week16_advocacyencryption_v1&utm_term=20968&utm_content=rel"}}}, "id": "20968", "weight": 50, "campaign": "f100 advocacy encryption", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "What\u2019s something we can all agree on? Internet health. Read more about it.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d07ec77e-2add-43e5-93fc-22bf6700d8f1.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 internet health report&utm_term=20963&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://internethealthreport.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week3_internethealthreport&utm_term=20963&utm_content=rel"}}}, "id": "20963", "weight": 50, "campaign": "f100 internet health report", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Control your privacy. Use private browsing to explore the web with maximum freedom.", "icon": "https://snippets.cdn.mozilla.net/media/icons/e61b7f32-4358-4401-b618-39a3e70d23a4.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO private browsing&utm_term=20962&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week3_SUMOprivatebrowsing_v2&utm_term=20962&utm_content=rel"}}}, "id": "20962", "weight": 50, "campaign": "f100 SUMO private browsing", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Add-ons are like toppings for your browser. Choose from dozens of customizations and make Firefox more to your liking.", "icon": "https://snippets.cdn.mozilla.net/media/icons/e202d1fd-7023-4cc9-8c14-3b814f2a09c9.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 addons toppings&utm_term=20960&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week5_addonstoppings&utm_term=20960&utm_content=rel"}}}, "id": "20960", "weight": 50, "campaign": "f100 addons toppings", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Level up your keyboard skills and perform tasks faster. Learn the keyboard shortcuts in Firefox", "icon": "https://snippets.cdn.mozilla.net/media/icons/11e9bd02-a0a7-4b82-adf8-674df9c2a4c1.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO keyboard shortcuts&utm_term=20958&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week5_SUMOkeyboardshortcuts_v1&utm_term=20958&utm_content=rel"}}}, "id": "20958", "weight": 50, "campaign": "f100 SUMO keyboard shortcuts", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Perform common tasks even faster with these essential keyboard shortcuts in Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/11e9bd02-a0a7-4b82-adf8-674df9c2a4c1.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO keyboard shortcuts&utm_term=20957&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week5_SUMOkeyboardshortcuts_v2&utm_term=20957&utm_content=rel"}}}, "id": "20957", "weight": 50, "campaign": "f100 SUMO keyboard shortcuts", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Themes give your browser a new look, any time you like. Try one of our featured themes.", "icon": "https://snippets.cdn.mozilla.net/media/icons/e2a0e2b8-c1e4-4aec-9266-6b321165fde3.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx themes&utm_term=20954&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/collections/mozilla/featured-personas/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week10_fxthemes&utm_term=20954&utm_content=rel"}}}, "id": "20954", "weight": 50, "campaign": "f100 fx themes", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Tired of using multiple browsers to view your 2nd email? Now you can do it all in Firefox with Multi-Account Containers!", "icon": "https://snippets.cdn.mozilla.net/media/icons/382f8812-2364-431e-b9c9-46eabbf0b322.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 multi-account containers&utm_term=20953&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week10_multiaccount_v1&utm_term=20953&utm_content=rel"}}}, "id": "20953", "weight": 50, "campaign": "f100 multi-account containers", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Using private browsing mode to juggle multiple accounts? Now there's a better way. Try Multi-Account Containers!", "icon": "https://snippets.cdn.mozilla.net/media/icons/382f8812-2364-431e-b9c9-46eabbf0b322.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 multi-account containers&utm_term=20948&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week10_multiaccount_v2&utm_term=20948&utm_content=rel"}}}, "id": "20948", "weight": 50, "campaign": "f100 multi-account containers", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Enhance your browsing experience. Make Firefox yours with custom preferences and personalized add-ons.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO manage preferences&utm_term=20947&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/products/firefox/manage-preferences-and-add-ons-firefox/install-and-manage-add-ons?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week13_SUMOmanagepreferences_v2&utm_term=20947&utm_content=rel"}}}, "id": "20947", "weight": 50, "campaign": "f100 SUMO manage preferences", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Make Firefox your default browser and browse at full speed. Visit Firefox → Preferences → General in your dropdown menu. Click \"Make Default\".", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO default browser&utm_term=20946&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/make-firefox-your-default-browser?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week8_SUMOdefaultbrowser_v2&utm_term=20946&utm_content=rel"}}}, "id": "20946", "weight": 50, "campaign": "f100 SUMO default browser", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Switch from Chrome to Firefox and enjoy the web faster. We'll import your bookmarks, autofills, passwords and preferences in just a few minutes.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO switch&utm_term=20941&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/switching-chrome-firefox?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week9_SUMOswitch&utm_term=20941&utm_content=rel"}}}, "id": "20941", "weight": 50, "campaign": "f100 SUMO switch", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Browse the web at full speed with privacy on your side. Set Firefox as your default browser.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO default browser&utm_term=20937&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/make-firefox-your-default-browser?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week8_SUMOdefaultbrowser_v1&utm_term=20937&utm_content=rel"}}}, "id": "20937", "weight": 50, "campaign": "f100 SUMO default browser", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Make browsing with Firefox even better. Customize your preferences and supercharge your productivity with personalized add-ons.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO manage preferences&utm_term=20933&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/products/firefox/manage-preferences-and-add-ons-firefox/install-and-manage-add-ons?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week13_SUMOmanagepreferences_v1&utm_term=20933&utm_content=rel"}}}, "id": "20933", "weight": 50, "campaign": "f100 SUMO manage preferences", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Switch from Chrome to Firefox and enjoy faster browsing. We\u2019ll import your bookmarks, passwords and history so you can pick up right where you left off.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO switch&utm_term=20932&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/switching-chrome-firefox?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week9_SUMOswitch&utm_term=20932&utm_content=rel"}}}, "id": "20932", "weight": 50, "campaign": "f100 SUMO switch", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Volunteer with Mozilla: learn, collaborate and share your skills with a global community of game changers helping shape the web.", "icon": "https://snippets.cdn.mozilla.net/media/icons/30029d11-a6aa-450d-b745-039b75c0f708.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 volunteer&utm_term=20926&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/contribute/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week12_volunteer_v2&utm_term=20926&utm_content=rel"}}}, "id": "20926", "weight": 50, "campaign": "f100 volunteer", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Share your skills with a global community of game changers who help shape the web. Volunteer with Mozilla.", "icon": "https://snippets.cdn.mozilla.net/media/icons/30029d11-a6aa-450d-b745-039b75c0f708.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 volunteer&utm_term=20924&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/contribute/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week12_volunteer_v1&utm_term=20924&utm_content=rel"}}}, "id": "20924", "weight": 50, "campaign": "f100 volunteer", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Did you know that our support team is available to help you with any questions you have related to Firefox? Learn more.", "icon": "https://snippets.cdn.mozilla.net/media/icons/30029d11-a6aa-450d-b745-039b75c0f708.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla support&utm_term=20846&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week2_mozillasupport&utm_term=20846&utm_content=rel"}}}, "id": "20846", "weight": 50, "campaign": "f100 mozilla support", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Mozilla, maker of Firefox, is the not-for-profit technology org helping to keep the web healthy, open and accessible to all. Learn more.", "icon": "https://snippets.cdn.mozilla.net/media/icons/30029d11-a6aa-450d-b745-039b75c0f708.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla mission&utm_term=20840&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week2_mozillamission&utm_term=20840&utm_content=rel"}}}, "id": "20840", "weight": 50, "campaign": "f100 mozilla mission", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Having a Firefox Account and not using Sync is like going to the carnival and not riding the Ferris Wheel. Don\u2019t miss out. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign into Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20831&utm_content=REL_ESR", "scene2_text": "Sign in to your Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20831", "utm_campaign": "f100_week12_nofxA_having", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20831", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Having a Firefox Account and not using Sync is like going to the carnival and not riding the Ferris Wheel. Don\u2019t miss out. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign into Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20827&utm_content=REL_ESR", "scene2_text": "Sign in to your Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20827", "utm_campaign": "f100_week9_nofxA_having", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20827", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Stop emailing yourself links. Make more room in your inbox and your brain with your Firefox Account. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20792&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20792", "utm_campaign": "f100_week1__nofxa_stop", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20792", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "A Firefox Account is your key to new apps and continued awesomeness from Firefox. Make your online experience seamless.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20791&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20791", "utm_campaign": "f100_week1_nofxa_awesomeness", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20791", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "A Firefox Account is your key to new apps and continued awesomeness from Firefox. Make your online experience seamless.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20781&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20781", "utm_campaign": "f100_week7_nofxa_awesomeness", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20781", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "A Firefox Account is your key to new apps and continued awesomeness from Firefox. Make your online experience seamless.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20777&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20777", "utm_campaign": "f100_week4_nofxa_awesomeness", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20777", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "NSYNC: a 90\u2019s boy band featuring a lot of hair gel. SYNC: the best way to enjoy your Firefox Account benefits. Distinctions are important. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20775&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20775", "utm_campaign": "f100_week2__nofxa_nsync", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20775", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "A Firefox Account is your key to new apps and continued awesomeness from Firefox. Make your online experience seamless.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20774&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20774", "utm_campaign": "f100_week13_nofxa_awesomeness", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20774", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "NSYNC: a 90\u2019s boy band featuring a lot of hair gel. SYNC: the best way to enjoy your Firefox Account benefits. Distinctions are important. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20773&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20773", "utm_campaign": "f100_week14__nofxa_nsync", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20773", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "While we haven\u2019t mastered telepathy yet, having your bookmarks sync automatically with all your devices is pretty close, right? ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Try a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20772&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20772", "utm_campaign": "f100_week3__nofxa_while", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20772", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "If you\u2019re like us, sometimes you work from bed. With a Firefox Account, you can stay under the covers and still send tabs across any device.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20770&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20770", "utm_campaign": "f100_week3__nofxa_If", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20770", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Stop emailing yourself links. Make more room in your inbox and your brain with your Firefox Account. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20768&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20768", "utm_campaign": "f100_week7__nofxa_stop", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20768", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "NSYNC: a 90\u2019s boy band featuring a lot of hair gel. SYNC: the best way to enjoy your Firefox Account benefits. Distinctions are important.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20767&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20767", "utm_campaign": "f100_week11__nofxa_nsync", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20767", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "If you\u2019re like us, sometimes you work from bed. With a Firefox Account, you can stay under the covers and still send tabs across any device.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20766&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20766", "utm_campaign": "f100_week6__nofxa_If", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20766", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "NSYNC: a 90\u2019s boy band featuring a lot of hair gel. SYNC: the best way to enjoy your Firefox Account benefits. Distinctions are important. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20764&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20764", "utm_campaign": "f100_week8__nofxa_nsync", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20764", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "NSYNC: a 90\u2019s boy band featuring a lot of hair gel. SYNC: the best way to enjoy your Firefox Account benefits. Distinctions are important. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20762&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20762", "utm_campaign": "f100_week5__nofxa_nsync", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20762", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Quick! Sync your devices so you can take the benefits of your Firefox Account everywhere you go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20761&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20761", "utm_campaign": "f100_week14__nofxa_quick", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20761", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Quick! Sync your devices so you can take the benefits of your Firefox Account everywhere you go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20760&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20760", "utm_campaign": "f100_week11__nofxa_quick", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20760", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Quick! Sync your devices so you can take the benefits of your Firefox Account everywhere you go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20759&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20759", "utm_campaign": "f100_week8__nofxa_quick", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20759", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "A Firefox Account is your key to new apps and continued awesomeness from Firefox. Make your online experience seamless.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20757&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20757", "utm_campaign": "f100_week16_nofxa_awesomeness", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20757", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "A Firefox Account is your key to new apps and continued awesomeness from Firefox. Make your online experience seamless.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20755&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20755", "utm_campaign": "f100_week10_nofxa_awesomeness", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20755", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Quick! Sync your devices so you can take the benefits of your Firefox Account everywhere you go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20754&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20754", "utm_campaign": "f100_week5__nofxa_quick", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20754", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Having a Firefox Account and not using Sync is like going to the carnival and not riding the Ferris Wheel. Don\u2019t miss out. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign into Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20752&utm_content=REL_ESR", "scene2_text": "Sign in to your Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20752", "utm_campaign": "f100_week15_nofxA_having", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20752", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "While we haven\u2019t mastered telepathy yet, having your bookmarks sync automatically with all your devices is pretty close, right? ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Try a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20751&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20751", "utm_campaign": "f100_week6__nofxa_while", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20751", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "While we haven\u2019t mastered telepathy yet, having your bookmarks sync automatically with all your devices is pretty close, right? ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Try a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20750&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20750", "utm_campaign": "f100_week9__nofxa_while", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20750", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Having a Firefox Account and not using Sync is like going to the carnival and not riding the Ferris Wheel. Don\u2019t miss out. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign into Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20749&utm_content=REL_ESR", "scene2_text": "Sign in to your Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20749", "utm_campaign": "f100_week3_nofxA_having", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20749", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Having a Firefox Account and not using Sync is like going to the carnival and not riding the Ferris Wheel. Don\u2019t miss out. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Sign into Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20746&utm_content=REL_ESR", "scene2_text": "Sign in to your Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20746", "utm_campaign": "f100_week6_nofxA_having", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20746", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Stop emailing yourself links. Make more room in your inbox and your brain with your Firefox Account. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20745&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20745", "utm_campaign": "f100_week16__nofxa_stop", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20745", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Stop emailing yourself links. Make more room in your inbox and your brain with your Firefox Account. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20744&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20744", "utm_campaign": "f100_week13__nofxa_stop", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20744", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Quick! Sync your devices so you can take the benefits of your Firefox Account everywhere you go.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20739&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20739", "utm_campaign": "f100_week2__nofxa_quick", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20739", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "NSYNC: a 90\u2019s boy band featuring a lot of hair gel. SYNC: the best way to enjoy your Firefox Account benefits. Distinctions are important.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20735&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20735", "utm_campaign": "f100_week17__nofxa_nsync", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20735", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "If you\u2019re like us, sometimes you work from bed. With a Firefox Account, you can stay under the covers and still send tabs across any device.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20729&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20729", "utm_campaign": "f100_week9__nofxa_If", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20729", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Stop emailing yourself links. Make more room in your inbox and your brain with your Firefox Account. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20728&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20728", "utm_campaign": "f100_week4__nofxa_stop", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20728", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "While we haven\u2019t mastered telepathy yet, having your bookmarks sync automatically with all your devices is pretty close, right? ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Try a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20727&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20727", "utm_campaign": "f100_week12__nofxa_while", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20727", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "If you\u2019re like us, sometimes you work from bed. With a Firefox Account, you can stay under the covers and still send tabs across any device.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20726&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20726", "utm_campaign": "f100_week12__nofxa_If", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20726", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Stop emailing yourself links. Make more room in your inbox and your brain with your Firefox Account. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20725&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20725", "utm_campaign": "f100_week10__nofxa_stop", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20725", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "If you\u2019re like us, sometimes you work from bed. With a Firefox Account, you can stay under the covers and still send tabs across any device.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20724&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20724", "utm_campaign": "f100_week15__nofxa_If", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20724", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "While we haven\u2019t mastered telepathy yet, having your bookmarks sync automatically with all your devices is pretty close, right? ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/0da6a7f7-c621-4acc-ba00-12fe6fa44709.png", "scene1_button_label": "Try a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20723&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20723", "utm_campaign": "f100_week15__nofxa_while", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20723", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "The data universe keeps expanding. Don\u2019t accept the defaults. Get a Firefox Account to keep your info protected in this new frontier.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20719&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20719", "utm_campaign": "f100_week9_nofxA_the", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20719", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Privacy is good. More privacy is gooder. With a Firefox Account, you get more. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20718&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20718", "utm_campaign": "f100_week8__nofxa_privacy", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20718", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Privacy is good. More privacy is gooder. With a Firefox Account, you get more. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20710&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20710", "utm_campaign": "f100_week2__nofxa_privacy", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20710", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "The data universe keeps expanding. Don\u2019t accept the defaults. Get a Firefox Account to keep your info protected in this new frontier.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20708&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20708", "utm_campaign": "f100_week3_nofxA_the", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20708", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Privacy is good. More privacy is gooder. With a Firefox Account, you get more. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20703&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20703", "utm_campaign": "f100_week11__nofxa_privacy", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20703", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "The data universe keeps expanding. Don\u2019t accept the defaults. Get a Firefox Account to keep your info protected in this new frontier.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20699&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20699", "utm_campaign": "f100_week15_nofxA_the", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20699", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Privacy is good. More privacy is gooder. With a Firefox Account, you get more. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20697&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20697", "utm_campaign": "f100_week5__nofxa_privacy", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20697", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "The data universe keeps expanding. Don\u2019t accept the defaults. Get a Firefox Account to keep your info protected in this new frontier.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20694&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20694", "utm_campaign": "f100_week6_nofxA_the", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20694", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "The data universe keeps expanding. Don\u2019t accept the defaults. Get a Firefox Account to keep your info protected in this new frontier.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20693&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20693", "utm_campaign": "f100_week12_nofxA_the", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20693", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Privacy is good. More privacy is gooder. With a Firefox Account, you get more. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/e085a291-d191-4c38-a92b-d4e19bea0e3c.png", "scene1_button_label": "Sign up now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20692&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20692", "utm_campaign": "f100_week14__nofxa_privacy", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20692", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "With Firefox Notes, your brilliant novel ideas \u2013 or shopping lists \u2013 are accessible on desktop and android devices. Try it with a Firefox Account.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d7c863ed-f9da-408e-b1ab-33c271b66ef8.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20679&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week8_fxa_with&utm_term=20679&utm_content=REL_ESR"}}}, "id": "20679", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "With Firefox Notes, your brilliant novel ideas \u2013 or shopping lists \u2013 are accessible on desktop and android devices. Try it with a Firefox Account.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d7c863ed-f9da-408e-b1ab-33c271b66ef8.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20678&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week5_fxa_with&utm_term=20678&utm_content=REL_ESR"}}}, "id": "20678", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "With Firefox Notes, your brilliant novel ideas \u2013 or shopping lists \u2013 are accessible on desktop and android devices. Try it with a Firefox Account.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d7c863ed-f9da-408e-b1ab-33c271b66ef8.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20677&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week14_fxa_with&utm_term=20677&utm_content=REL_ESR"}}}, "id": "20677", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "With Firefox Notes, your brilliant novel ideas \u2013 or shopping lists \u2013 are accessible on desktop and android devices. Try it with a Firefox Account.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d7c863ed-f9da-408e-b1ab-33c271b66ef8.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20676&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week2_fxa_with&utm_term=20676&utm_content=REL_ESR"}}}, "id": "20676", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "We may not have members-only jackets (yet), but you can still belong - try on a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20675&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20675", "utm_campaign": "f100_week9_nofxA_we", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20675", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Your browser is ready for a makeover. Don\u2019t worry, you\u2019ve got tons of options. Check them out here.", "icon": "https://snippets.cdn.mozilla.net/media/icons/44b2d817-5082-4d50-8f17-bb553bab2aac.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx themes&utm_term=20674&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/themes/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week14_fxthemes&utm_term=20674&utm_content=rel"}}}, "id": "20674", "weight": 50, "campaign": "f100 fx themes", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "A healthy you is happy and spritely. A healthy Internet is secure and private.", "icon": "https://snippets.cdn.mozilla.net/media/icons/6f61c06c-1755-4f1e-8aec-b8e6ebff594e.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 privacy and security&utm_term=20673&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/internet-health/privacy-security/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week14_privacysecurity_v1&utm_term=20673&utm_content=rel"}}}, "id": "20673", "weight": 50, "campaign": "f100 privacy and security", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Our brains are not meant to hold so many passwords. That\u2019s science. Manage your passwords with Lockwise when you join Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week11_nofxa_our&utm_term=20672&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20672&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20672", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Our brains are not meant to hold so many passwords. That\u2019s science. Manage your passwords with Lockwise when you join Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week14_nofxa_our&utm_term=20671&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20671&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20671", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Our brains are not meant to hold so many passwords. That\u2019s science. Manage your passwords with Lockwise when you join Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&&utm_medium=snippet&utm_campaign=en_f100_week2_nofxa_our&utm_term=20670&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20670&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20670", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Our brains are not meant to hold so many passwords. That\u2019s science. Manage your passwords with Lockwise when you join Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week5_nofxa_our&utm_term=20669&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20669&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20669", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Our brains are not meant to hold so many passwords. That\u2019s science. Manage your passwords with Lockwise when you join Firefox.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week8_nofxa_our&utm_term=20668&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20668&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20668", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Let your voice be heard! Literally. Contribute your voice to the world\u2019s first crowdsourced voice library.", "icon": "https://snippets.cdn.mozilla.net/media/icons/ee8e35f6-c36b-4664-9900-ddff63eb09bc.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 common voice&utm_term=20663&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://voice.mozilla.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week9_commonvoice&utm_term=20663&utm_content=rel"}}}, "id": "20663", "weight": 50, "campaign": "f100 common voice", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Still using bookmarks? Try Pocket for Firefox - it\u2019s better than bookmarks.", "icon": "https://snippets.cdn.mozilla.net/media/icons/3250ec21-55ba-42d7-9e4f-3ccc0e4ed076.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 pocket&utm_term=20657&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://getpocket.com/firefox_learnmore?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week11_pocket&utm_term=20657&utm_content=rel"}}}, "id": "20657", "weight": 33, "campaign": "f100 pocket", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "What if your bookmarks had a brain? Try Pocket for Firefox and discover more great content based on the stuff you save.", "icon": "https://snippets.cdn.mozilla.net/media/icons/3250ec21-55ba-42d7-9e4f-3ccc0e4ed076.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 pocket&utm_term=20653&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://getpocket.com/firefox_learnmore?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week3_pocketbrain&utm_term=20653&utm_content=rel"}}}, "id": "20653", "weight": 50, "campaign": "f100 pocket", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Still using bookmarks? Try Pocket for Firefox - it\u2019s better than bookmarks.", "icon": "https://snippets.cdn.mozilla.net/media/icons/3250ec21-55ba-42d7-9e4f-3ccc0e4ed076.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 pocket&utm_term=20647&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://getpocket.com/firefox_learnmore?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week3_pocket&utm_term=20647&utm_content=rel"}}}, "id": "20647", "weight": 33, "campaign": "f100 pocket", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Unlike your attic, Firefox is easy to clean. Just click the Forget Button and presto! No more browser history.", "icon": "https://snippets.cdn.mozilla.net/media/icons/42fb07e1-043b-4e85-ba08-1abbcfd73c1a.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO forget button&utm_term=20641&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/forget-button-quickly-delete-your-browsing-history?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week8_SUMOforgetbutton&utm_term=20641&utm_content=rel"}}}, "id": "20641", "weight": 50, "campaign": "f100 SUMO forget button", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Go ahead, forget all bajillion passwords. Lockwise keeps you safe AND clears up brainspace. See for yourself \u2013 only with a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "scene1_button_label": "Sign up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20619&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20619", "utm_campaign": "f100_week7_nofxa_bajillion", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20619", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Go ahead, forget all bajillion passwords. Lockwise keeps you safe AND clears up brainspace. See for yourself \u2013 only with a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "scene1_button_label": "Sign up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20618&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20618", "utm_campaign": "f100_week4_nofxa_bajillion", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20618", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Go ahead, forget all bajillion passwords. Lockwise keeps you safe AND clears up brainspace. See for yourself \u2013 only with a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "scene1_button_label": "Sign up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20617&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20617", "utm_campaign": "f100_week16_nofxa_bajillion", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20617", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Go ahead, forget all bajillion passwords. Lockwise keeps you safe AND clears up brainspace. See for yourself \u2013 only with a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "scene1_button_label": "Sign up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20615&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20615", "utm_campaign": "f100_week13_nofxa_bajillion", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20615", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Go ahead, forget all bajillion passwords. Lockwise keeps you safe AND clears up brainspace. See for yourself \u2013 only with a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "scene1_button_label": "Sign up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20614&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20614", "utm_campaign": "f100_week10_nofxa_bajillion", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20614", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Go ahead, forget all bajillion passwords. Lockwise keeps you safe AND clears up brainspace. See for yourself \u2013 only with a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "scene1_button_label": "Sign up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20613&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20613", "utm_campaign": "f100_week1_nofxa_bajillion", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20613", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Get your security on with Mozilla's series of online privacy tips. Safety First, friends!", "icon": "https://snippets.cdn.mozilla.net/media/icons/3473ab47-35d5-44e4-899e-b29c2702dc4e.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 advocacy safety first&utm_term=20612&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://advocacy.mozilla.org/en-US/safety/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week4_advocacysafetyfirst&utm_term=20612&utm_content=rel"}}}, "id": "20612", "weight": 50, "campaign": "f100 advocacy safety first", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "We get it. Everyone has a favorite browser. If Firefox is yours, why not make it your default?", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=non_default_browser&utm_term=20611&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/kb/make-firefox-your-default-browser?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=non_default_favorite_browser&utm_term=20611&utm_content=ALL"}}}, "id": "20611", "weight": 100, "campaign": "non_default_browser", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6 && isDefaultBrowser == false"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Looking for the answer to faster browsing? Behold: the quickest way to cut page load times in half.", "icon": "https://snippets.cdn.mozilla.net/media/icons/cd146bcf-8c95-4158-b2bf-8fc517afd68a.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx 58 fast&utm_term=20609&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://blog.mozilla.org/blog/2018/01/23/latest-firefox-quantum-release-now-available-with-new-features/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week8_fx58fast&utm_term=20609&utm_content=rel"}}}, "id": "20609", "weight": 50, "campaign": "f100 fx 58 fast", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Wish all your links opened in the same browser? Fix that by making Firefox your default. Try it now.", "icon": "https://snippets.cdn.mozilla.net/media/icons/0fea7857-c423-4182-8591-736747c75337.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=non_default_browser&utm_term=20605&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/kb/make-firefox-your-default-browser?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=non_default_fix_that&utm_term=20605&utm_content=ALL"}}}, "id": "20605", "weight": 100, "campaign": "non_default_browser", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6 && isDefaultBrowser == false"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Whether you\u2019re new to Firefox or just need a refresher, here\u2019s a quick guide to all the awesomeness Firefox comes with right out of the box.", "icon": "https://snippets.cdn.mozilla.net/media/icons/d5c66e43-a0d2-408e-b936-a426881b488c.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO main features&utm_term=20603&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/get-started-firefox-overview-main-features?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week1_SUMOmainfeatures&utm_term=20603&utm_content=rel"}}}, "id": "20603", "weight": 50, "campaign": "f100 SUMO main features", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Do you get warm fuzzies when you use Firefox? Get that feeling every time you go online. Make Firefox your default.", "icon": "https://snippets.cdn.mozilla.net/media/icons/b63e9fc9-a5b9-4394-93e5-62ef29b270a3.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=non_default_browser&utm_term=20600&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/kb/make-firefox-your-default-browser?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=non_default_fuzzy_feeling&utm_term=20600&utm_content=ALL"}}}, "id": "20600", "weight": 100, "campaign": "non_default_browser", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6 && isDefaultBrowser == false"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "You wouldn't walk into a public restroom barefoot. You shouldn't log into public Wi-Fi without taking a few quick precautions either. Stay safe online with Mozilla's Safety Tips.", "icon": "https://snippets.cdn.mozilla.net/media/icons/26718c3f-9e3b-4d49-a67b-d2e656e758fb.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 advocacy public wifi&utm_term=20597&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://advocacy.mozilla.org/en-US/safety/public-wifi?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week12_advocacy_v2&utm_term=20597&utm_content=rel"}}}, "id": "20597", "weight": 50, "campaign": "f100 advocacy public wifi", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "What's the Wi-Fi? Stay safe the next time you connect to free public networks with these simple steps from Mozilla.", "icon": "https://snippets.cdn.mozilla.net/media/icons/26718c3f-9e3b-4d49-a67b-d2e656e758fb.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 advocacy public wifi&utm_term=20596&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://advocacy.mozilla.org/en-US/safety/public-wifi?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week12_advocacy_v1&utm_term=20596&utm_content=rel"}}}, "id": "20596", "weight": 50, "campaign": "f100 advocacy public wifi", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Reading, writing, arithmetic \u2014 and now Web literacy. Learn basic Web skills key to crushing it in the 21st century.", "icon": "https://snippets.cdn.mozilla.net/media/icons/c7f6f9a9-8b8b-4a01-8c51-2833b2da4d8b.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 web literacy&utm_term=20595&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://learning.mozilla.org/en-US/web-literacy?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week2_webliteracy&utm_term=20595&utm_content=rel"}}}, "id": "20595", "weight": 50, "campaign": "f100 web literacy", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Thanks for choosing Firefox and supporting an independent web. You're awesome! Here's what you can do next.", "icon": "https://snippets.cdn.mozilla.net/media/icons/0c6337e3-8a11-4435-9732-cabb79f59f78.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 thank you referral loop&utm_term=20592&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/etc/firefox/retention/thank-you-a/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week4_thankyourefferal&utm_term=20592&utm_content=rel"}}}, "id": "20592", "weight": 50, "campaign": "f100 thank you referral loop", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Powerful privacy tools, media enhancers and more: our essential extensions collection is loaded with awesome add-ons. Check them out.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 essential extensions&utm_term=20556&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/collections/mozilla/essential-extensions/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week7_essentialextensions&utm_term=20556&utm_content=rel"}}}, "id": "20556", "weight": 50, "campaign": "f100 essential extensions", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Did you know that our support team is available to help you with any questions you have related to Firefox? Learn more.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO fx support&utm_term=20555&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/products/firefox/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week5_SUMOfxsupport&utm_term=20555&utm_content=rel"}}}, "id": "20555", "weight": 50, "campaign": "f100 SUMO fx support", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Hey, nice work choosing Firefox for your webby journeys. Not all heroes wear capes and by browsing with us, you're helping build a better internet.", "icon": "https://snippets.cdn.mozilla.net/media/icons/99402819-d9d3-4519-84f9-cdea0619ab54.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20554&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://www.mozilla.org/en-US/internet-health/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week1_welcomeinternethealth&utm_term=20554&utm_content=rel"}}}, "id": "20554", "weight": 50, "campaign": "f100 welcome internet health", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Get more fox in your inbox. Sign up for user tips, booster packs and internet intel.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/fbb2c63a-a447-4b45-893c-931d88770fe4.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx newsletter signup&utm_term=20507&utm_content=REL", "scene2_text": "Sign up for monthly user tips, booster packs and internet intel.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-and-you", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice. ", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/"}}}, "id": "20507", "weight": 50, "campaign": "f100 fx newsletter signup", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Own your life online with a Firefox Account. Your bookmarks, passwords, and tabs go with you everywhere. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20501&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20501", "utm_campaign": "f100_week9_nofxA_own", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20501", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Wish you had a genie? Well, they don\u2019t exist. But Firefox Accounts are real, and they can make your bookmarks appear everywhere you use Firefox. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20498&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices. ", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20498", "utm_campaign": "f100_week9__nofxa_wish", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20498", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse boldly. ", "scene1_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/a13dd110-9b7d-4a1f-bc7c-b606fb780941.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20482&utm_content=REL", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20482", "utm_campaign": "f100_week9__nofxaccount", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20482", "weight": 50, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Watching the sunrise outdoors statistically increases your odds of having a good day. And needing a nap after lunch.", "icon": "https://snippets.cdn.mozilla.net/media/icons/c6d34d7f-b965-4a0f-baa6-878ff1c3d380.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 delight sunrise&utm_term=20479&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20479", "weight": 50, "campaign": "f100 delight sunrise", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 9 && ((currentDate|date - profileAgeCreated) / 604800000) < 10"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Keep your bank information private. Use a secure, encrypted link when sending any financial documents online.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Try Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week8_send2&utm_term=20475&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20475&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20475", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Reason #89 to get a Firefox Account: all the secure kids are doing it. Hop on the bandwagon and protect yourself online. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20474&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20474", "utm_campaign": "f100_week8__nofxa_Reason", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20474", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Give a little, and get it back ten-fold. Sign up for an account, and make your life online easier and more secure.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get an account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20467&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20467", "utm_campaign": "f100_week8__nofxa_give", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20467", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "You don\u2019t have to store your large files in the cloud just to be able to share them. Send docs or videos with an encrypted link that expires.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week8_send5&utm_term=20466&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20466&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20466", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free thought: Never let a dress code get in the way of fun socks.", "icon": "https://snippets.cdn.mozilla.net/media/icons/7575bb17-2140-49f0-8d2e-81fde72c36a4.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 delight fun socks&utm_term=20460&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20460", "weight": 50, "campaign": "f100 delight fun socks", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 8 && ((currentDate|date - profileAgeCreated) / 604800000) < 9"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Safely share files online with encrypted links that \u201cself-destruct\u201d \u2013 with a Firefox Account you can send up to 2.5GB.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Check it out", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week7_send1&utm_term=20452&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20452&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20452", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Send files with an encrypted link that automatically expires \u2013 because you don\u2019t need your stuff to live online forever.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Go to Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week7_send3&utm_term=20447&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20447&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20447", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free your mind and the tabs will follow. Sign up for a Firefox Account to make your internet a whole lot easier. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week7_nofxa_free&utm_term=20443&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20443&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20443", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Bank, stream, and tweet with peace of mind. Your Firefox Account lets you securely access passwords wherever you internet. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week7_nofxa_bank&utm_term=20441&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20441&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20441", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Not even catfish like to be catfished. Listen to Mozilla\u2019s podcast, IRL, to learn about the consequences of the online world overlapping into the real world. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/03991e14-af7c-4735-98d1-371e5401c4da.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 IRL&utm_term=20440&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://irlpodcast.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week7_IRL&utm_term=20440&utm_content=rel"}}}, "id": "20440", "weight": 50, "campaign": "f100 IRL", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Tip: Use the Ctrl + D keyboard shortcut to quickly bookmark the current page!", "icon": "https://snippets.cdn.mozilla.net/media/icons/11e9bd02-a0a7-4b82-adf8-674df9c2a4c1.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO save bookmark win only&utm_term=20439&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week7_SUMOsavebookmark&utm_term=20439&utm_content=rel#w_bookmarks"}}}, "id": "20439", "weight": 50, "campaign": "f100 SUMO save bookmark win only", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8 && platformName == \"win\""}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Screenshots is a better way to screenshot. Save and share cool stuff without leaving Firefox. Learn More.", "icon": "https://snippets.cdn.mozilla.net/media/icons/94702fdb-c31f-43e0-bec6-51d801e18ebf.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx screenshots&utm_term=20438&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://screenshots.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week7_fxscreenshots_v1&utm_term=20438&utm_content=rel"}}}, "id": "20438", "weight": 50, "campaign": "f100 fx screenshots", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Say goodbye to your complex screenshot hack. Screenshots is a new way to save and share within Firefox. Learn More.", "icon": "https://snippets.cdn.mozilla.net/media/icons/94702fdb-c31f-43e0-bec6-51d801e18ebf.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx screenshots&utm_term=20434&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://screenshots.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week7_fxscreenshots_v1&utm_term=20434&utm_content=rel"}}}, "id": "20434", "weight": 50, "campaign": "f100 fx screenshots", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 7 && ((currentDate|date - profileAgeCreated) / 604800000) < 8"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Wish you had a genie? Well, they don\u2019t exist. But Firefox Accounts are real, and they can make your bookmarks appear everywhere you use Firefox. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20425&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices. ", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20425", "utm_campaign": "f100_week6__nofxa_wish", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20425", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Own your life online with a Firefox Account. Your bookmarks, passwords, and tabs go with you everywhere. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20423&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20423", "utm_campaign": "f100_week6_nofxA_own", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20423", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "We may not have members-only jackets (yet), but you can still belong - try on a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20422&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20422", "utm_campaign": "f100_week6_nofxA_we", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20422", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Be part of a movement. ", "scene1_text": "Internet shutdowns, hackers, harassment \u2014 the health of the internet is on the line. Sign up and Mozilla will keep you updated on how you can help.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/c46c6cdf-ef2d-460a-9009-8c1ccbbe84c6.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla newsletter signup&utm_term=20409&utm_content=REL", "scene2_text": "Sign up for the Mozilla newsletter and we will keep you updated on how you can help.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-foundation", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice. ", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/"}}}, "id": "20409", "weight": 50, "campaign": "f100 mozilla newsletter signup", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Learning = self-improvement.", "scene1_text": "Sign up for the Mozilla newsletter to get smart on the issues affecting your life online.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/c2218ee9-13b2-4b04-be3f-425642c4ffcf.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla newsletter signup&utm_term=20408&utm_content=REL", "scene2_text": "Sign up for the Mozilla newsletter to get smart on the issues affecting your life online.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-foundation", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice. ", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/"}}}, "id": "20408", "weight": 50, "campaign": "f100 mozilla newsletter signup", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Tip: Use the Ctrl + T keyboard shortcut to open a new tab quickly!", "icon": "https://snippets.cdn.mozilla.net/media/icons/11e9bd02-a0a7-4b82-adf8-674df9c2a4c1.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO new tab win only&utm_term=20405&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week6_SUMOnewtabWinOnly&utm_term=20405&utm_content=rel#w_windows-tabs"}}}, "id": "20405", "weight": 50, "campaign": "f100 SUMO new tab win only", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7 && platformName == \"win\""}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "A healthy Internet is a vital resource like fresh water, public education or reruns of The Simpsons. Discover how to be a better Internet Citizen at the Mozilla blog.", "icon": "https://snippets.cdn.mozilla.net/media/icons/3b269a7e-0383-4813-8997-83f6bd8cbb0f.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 internet citizen blog&utm_term=20404&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://blog.mozilla.org/internetcitizen/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week6_internetcitizenblog&utm_term=20404&utm_content=rel"}}}, "id": "20404", "weight": 50, "campaign": "f100 internet citizen blog", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Customize. Create. Explore. We've got themes galore.", "icon": "https://snippets.cdn.mozilla.net/media/icons/e2a0e2b8-c1e4-4aec-9266-6b321165fde3.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx themes&utm_term=20392&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/themes/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week6_fxthemes&utm_term=20392&utm_content=rel"}}}, "id": "20392", "weight": 50, "campaign": "f100 fx themes", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 6 && ((currentDate|date - profileAgeCreated) / 604800000) < 7"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "You don\u2019t have to store your large files in the cloud just to be able to share them. Send docs or videos with an encrypted link that expires.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week5_send5&utm_term=20390&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20390&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20390", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Give a little, and get it back ten-fold. Sign up for an account, and make your life online easier and more secure.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get an account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20384&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20384", "utm_campaign": "f100_week5__nofxa_give", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20384", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Reason #89 to get a Firefox Account: all the secure kids are doing it. Hop on the bandwagon and protect yourself online. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20381&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20381", "utm_campaign": "f100_week5__nofxa_Reason", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20381", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Keep your bank information private. Use a secure, encrypted link when sending any financial documents online.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Try Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week5_send2&utm_term=20379&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20379&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20379", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Need a quick recharge? Power up with a power nap. Geniuses like Dali and Einstein loved sneaking in some extra ZZZs.", "icon": "https://snippets.cdn.mozilla.net/media/icons/5609a0c8-01d3-4210-9871-eb1a200ebd5e.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 delight power nap&utm_term=20374&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20374", "weight": 50, "campaign": "f100 delight power nap", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse boldly. ", "scene1_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/a13dd110-9b7d-4a1f-bc7c-b606fb780941.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20372&utm_content=REL", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20372", "utm_campaign": "f100_week5__nofxaccount", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20372", "weight": 50, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Power up Firefox with add-ons. Choose from dozens of customizations for privacy, social, gaming, and a whole lot more.", "icon": "https://snippets.cdn.mozilla.net/media/icons/8e12ba63-596b-4b12-95d8-7cf7fa07759a.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 addons power up&utm_term=20363&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week5_addonspowerup&utm_term=20363&utm_content=rel"}}}, "id": "20363", "weight": 50, "campaign": "f100 addons power up", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 5 && ((currentDate|date - profileAgeCreated) / 604800000) < 6"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Safely share files online with encrypted links that \u201cself-destruct\u201d \u2013 with a Firefox Account you can send up to 2.5GB.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Check it out", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week4_send1&utm_term=20332&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20332&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20332", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Send files with an encrypted link that automatically expires \u2013 because you don\u2019t need your stuff to live online forever.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Go to Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week4_send3&utm_term=20329&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20329&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20329", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free your mind and the tabs will follow. Sign up for a Firefox Account to make your internet a whole lot easier. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week4_nofxa_free&utm_term=20327&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20327&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20327", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Bank, stream, and tweet with peace of mind. Your Firefox Account lets you securely access passwords wherever you internet. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week4_nofxa_bank&utm_term=20325&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20325&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20325", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 4 && ((currentDate|date - profileAgeCreated) / 604800000) < 5"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Wish you had a genie? Well, they don\u2019t exist. But Firefox Accounts are real, and they can make your bookmarks appear everywhere you use Firefox. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20315&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices. ", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20315", "utm_campaign": "f100_week3__nofxa_wish", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20315", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Own your life online with a Firefox Account. Your bookmarks, passwords, and tabs go with you everywhere. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20310&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20310", "utm_campaign": "f100_week3_nofxA_own", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20310", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "We may not have members-only jackets (yet), but you can still belong - try on a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20309&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20309", "utm_campaign": "f100_week3_nofxA_we", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20309", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Open a private window in Firefox to browse freely and keep away the trackers.", "icon": "https://snippets.cdn.mozilla.net/media/icons/e61b7f32-4358-4401-b618-39a3e70d23a4.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO private browsing&utm_term=20306&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week3_SUMOprivatebrowsing&utm_term=20306&utm_content=rel"}}}, "id": "20306", "weight": 50, "campaign": "f100 SUMO private browsing", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Mozilla\u2019s Podcast, IRL, explores what happens when our online life meets our real life. Take a listen.", "icon": "https://snippets.cdn.mozilla.net/media/icons/03991e14-af7c-4735-98d1-371e5401c4da.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 IRL&utm_term=20303&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://irlpodcast.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week3_IRL&utm_term=20303&utm_content=rel"}}}, "id": "20303", "weight": 50, "campaign": "f100 IRL", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 3 && ((currentDate|date - profileAgeCreated) / 604800000) < 4"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Keep your bank information private. Use a secure, encrypted link when sending any financial documents online.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Try Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week2_send2&utm_term=20294&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20294&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20294", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Give a little, and get it back ten-fold. Sign up for an account, and make your life online easier and more secure.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get an account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20288&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20288", "utm_campaign": "f100_week2__nofxa_give", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20288", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Reason #89 to get a Firefox Account: all the secure kids are doing it. Hop on the bandwagon and protect yourself online. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20286&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20286", "utm_campaign": "f100_week2__nofxa_Reason", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20286", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "You don\u2019t have to store your large files in the cloud just to be able to share them. Send docs or videos with an encrypted link that expires.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week2_send5&utm_term=20284&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20284&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20284", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Get more fox in your inbox. Sign up for user tips, booster packs and internet intel.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/fbb2c63a-a447-4b45-893c-931d88770fe4.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx newsletter signup&utm_term=20279&utm_content=REL", "scene2_text": "Sign up for monthly user tips, booster packs and internet intel.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-and-you", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice. ", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/"}}}, "id": "20279", "weight": 50, "campaign": "f100 fx newsletter signup", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Become a power Firefox user. Discover customization tricks and something we call, THE AWESOME BAR.", "icon": "https://snippets.cdn.mozilla.net/media/icons/8e12ba63-596b-4b12-95d8-7cf7fa07759a.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 SUMO awesome bar&utm_term=20278&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://support.mozilla.org/en-US/kb/awesome-bar-search-firefox-bookmarks-history-tabs?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_SUMOawesomebar&utm_term=20278&utm_content=rel"}}}, "id": "20278", "weight": 50, "campaign": "f100 SUMO awesome bar", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 2 && ((currentDate|date - profileAgeCreated) / 604800000) < 3"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free your mind and the tabs will follow. Sign up for a Firefox Account to make your internet a whole lot easier. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week16_nofxa_free&utm_term=20267&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20267&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20267", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Send files with an encrypted link that automatically expires \u2013 because you don\u2019t need your stuff to live online forever.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Go to Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week16_send3&utm_term=20262&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20262&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20262", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Bank, stream, and tweet with peace of mind. Your Firefox Account lets you securely access passwords wherever you internet. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week16_nofxa_bank&utm_term=20260&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20260&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20260", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Safely share files online with encrypted links that \u201cself-destruct\u201d \u2013 with a Firefox Account you can send up to 2.5GB.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Check it out", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week16_send1&utm_term=20257&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20257&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20257", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 16 && ((currentDate|date - profileAgeCreated) / 604800000) < 17"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Own your life online with a Firefox Account. Your bookmarks, passwords, and tabs go with you everywhere. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20256&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20256", "utm_campaign": "f100_week15_nofxA_own", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20256", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "We may not have members-only jackets (yet), but you can still belong - try on a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20254&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20254", "utm_campaign": "f100_week15_nofxA_we", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20254", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Wish you had a genie? Well, they don\u2019t exist. But Firefox Accounts are real, and they can make your bookmarks appear everywhere you use Firefox. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20247&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices. ", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20247", "utm_campaign": "f100_week15__nofxa_wish", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20247", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Not even catfish like to be catfished. Listen to Mozilla\u2019s podcast, IRL, to learn about the consequences of the online world overlapping into the real world. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/03991e14-af7c-4735-98d1-371e5401c4da.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 IRL&utm_term=20242&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://irlpodcast.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week15_IRL&utm_term=20242&utm_content=rel"}}}, "id": "20242", "weight": 50, "campaign": "f100 IRL", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "There are more stars in the Milky Way than loose change between your couch cushions.", "icon": "https://snippets.cdn.mozilla.net/media/icons/9bccd06b-c45d-4696-aea6-ee290fe53cc0.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 delight milky way&utm_term=20234&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://en.wikipedia.org/wiki/Milky_Way?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week14_delight_milkyway&utm_term=20234&utm_content=rel"}}}, "id": "20234", "weight": 50, "campaign": "f100 delight milky way", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 15 && ((currentDate|date - profileAgeCreated) / 604800000) < 16"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Reason #89 to get a Firefox Account: all the secure kids are doing it. Hop on the bandwagon and protect yourself online. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20231&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20231", "utm_campaign": "f100_week14__nofxa_Reason", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20231", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Keep your bank information private. Use a secure, encrypted link when sending any financial documents online.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Try Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week14_send2&utm_term=20226&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20226&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20226", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Give a little, and get it back ten-fold. Sign up for an account, and make your life online easier and more secure.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get an account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20225&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20225", "utm_campaign": "f100_week14__nofxa_give", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20225", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "You don\u2019t have to store your large files in the cloud just to be able to share them. Send docs or videos with an encrypted link that expires.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week14_send4&utm_term=20223&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20223&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20223", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Be part of a movement. ", "scene1_text": "Internet shutdowns, hackers, harassment \u2014 the health of the internet is on the line. Sign up and Mozilla will keep you updated on how you can help.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/c46c6cdf-ef2d-460a-9009-8c1ccbbe84c6.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla newsletter signup&utm_term=20207&utm_content=REL", "scene2_text": "Sign up for the Mozilla newsletter and we will keep you updated on how you can help.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-foundation", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice. ", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/"}}}, "id": "20207", "weight": 50, "campaign": "f100 mozilla newsletter signup", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "newsletter_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Learning = self-improvement.", "scene1_text": "Sign up for the Mozilla newsletter to get smart on the issues affecting your life online.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/c2218ee9-13b2-4b04-be3f-425642c4ffcf.png", "scene1_button_label": "Continue", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 mozilla newsletter signup&utm_term=20205&utm_content=REL", "scene2_text": "Sign up for the Mozilla newsletter to get smart on the issues affecting your life online.", "scene2_button_label": "Sign Me Up", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "scene2_newsletter": "mozilla-foundation", "scene2_privacy_html": "I'm okay with Mozilla handling my info as explained in this Privacy Notice. ", "locale": "en-US", "success_text": "Check your inbox for the confirmation!", "error_text": "Oops! Something went wrong. Can you try that again?", "block_button_text": "Remove this", "do_not_autoblock": false, "retry_button_label": "Try again", "links": {"link0": {"url": "https://www.mozilla.org/privacy/websites/"}}}, "id": "20205", "weight": 50, "campaign": "f100 mozilla newsletter signup", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 14 && ((currentDate|date - profileAgeCreated) / 604800000) < 15"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Send files with an encrypted link that automatically expires \u2013 because you don\u2019t need your stuff to live online forever.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Go to Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week13_send3&utm_term=20203&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20203&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20203", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free your mind and the tabs will follow. Sign up for a Firefox Account to make your internet a whole lot easier. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week13_nofxa_free&utm_term=20198&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20198&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20198", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Bank, stream, and tweet with peace of mind. Your Firefox Account lets you securely access passwords wherever you internet. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week13_nofxa_bank&utm_term=20194&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20194&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20194", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Safely share files online with encrypted links that \u201cself-destruct\u201d \u2013 with a Firefox Account you can send up to 2.5GB.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Check it out", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week13_send1&utm_term=20193&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20193&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20193", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse boldly. ", "scene1_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/a13dd110-9b7d-4a1f-bc7c-b606fb780941.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20186&utm_content=REL", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20186", "utm_campaign": "f100_week13__nofxaccount", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20186", "weight": 50, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 13 && ((currentDate|date - profileAgeCreated) / 604800000) < 14"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Wish you had a genie? Well, they don\u2019t exist. But Firefox Accounts are real, and they can make your bookmarks appear everywhere you use Firefox. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Sign Up Now", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20175&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices. ", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20175", "utm_campaign": "f100_week12__nofxa_wish", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20175", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Own your life online with a Firefox Account. Your bookmarks, passwords, and tabs go with you everywhere. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20174&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20174", "utm_campaign": "f100_week12_nofxA_own", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20174", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "We may not have members-only jackets (yet), but you can still belong - try on a Firefox Account.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20171&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20171", "utm_campaign": "f100_week12_nofxA_we", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20171", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Where can you find beaches, mountains, deserts, caves and volcanoes (Here\u2019s a hint: It starts with a \u201cT\u201d and ends with \u201che National Parks.\u201d)", "icon": "https://snippets.cdn.mozilla.net/media/icons/2f3a61aa-a01f-4f16-930e-478c34adda52.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 national parks&utm_term=20167&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://en.wikipedia.org/wiki/List_of_national_parks_of_the_United_States"}}}, "id": "20167", "weight": 50, "campaign": "f100 national parks", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 12 && ((currentDate|date - profileAgeCreated) / 604800000) < 13"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Reason #89 to get a Firefox Account: all the secure kids are doing it. Hop on the bandwagon and protect yourself online. ", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get a Firefox Account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 welcome internet health&utm_term=20151&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20151", "utm_campaign": "f100_week11__nofxa_Reason", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20151", "weight": 100, "campaign": "f100 welcome internet health", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "You don\u2019t have to store your large files in the cloud just to be able to share them. Send docs or videos with an encrypted link that expires.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week11_send5&utm_term=20146&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20146&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20146", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_text": "Give a little, and get it back ten-fold. Sign up for an account, and make your life online easier and more secure.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "scene1_button_label": "Get an account", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20144&utm_content=REL_ESR", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20144", "utm_campaign": "f100_week11__nofxa_give", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20144", "weight": 200, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Keep your bank information private. Use a secure, encrypted link when sending any financial documents online.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Try Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week11_send2&utm_term=20143&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20143&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20143", "weight": 100, "campaign": "f100 fx account", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Mozilla\u2019s Podcast, IRL, explores what happens when our online life meets our real life. Take a listen.", "icon": "https://snippets.cdn.mozilla.net/media/icons/03991e14-af7c-4735-98d1-371e5401c4da.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 IRL&utm_term=20137&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://irlpodcast.org/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week11_IRL&utm_term=20137&utm_content=rel"}}}, "id": "20137", "weight": 50, "campaign": "f100 IRL", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 11 && ((currentDate|date - profileAgeCreated) / 604800000) < 12"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free your mind and the tabs will follow. Sign up for a Firefox Account to make your internet a whole lot easier. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week10_nofxa_free&utm_term=20130&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20130&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20130", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Bank, stream, and tweet with peace of mind. Your Firefox Account lets you securely access passwords wherever you internet. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week10_nofxa_bank&utm_term=20129&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20129&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20129", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Send files with an encrypted link that automatically expires \u2013 because you don\u2019t need your stuff to live online forever.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Go to Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week10_send3&utm_term=20128&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20128&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20128", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Safely share files online with encrypted links that \u201cself-destruct\u201d \u2013 with a Firefox Account you can send up to 2.5GB.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Check it out", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week10_send1&utm_term=20127&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20127&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20127", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 10 && ((currentDate|date - profileAgeCreated) / 604800000) < 11"}, {"template": "fxa_signup_snippet", "template_version": "1.0.0", "content": {"scene1_title": "Browse boldly. ", "scene1_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene1_icon": "https://snippets.cdn.mozilla.net/media/icons/a13dd110-9b7d-4a1f-bc7c-b606fb780941.png", "scene1_button_label": "Set Up Sync", "scene1_section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "scene1_section_title_text": "Messages from Firefox", "scene1_section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20119&utm_content=REL", "scene2_text": "Sign up for a Firefox Account to sync your protected passwords, open tabs and bookmarks on all your devices.", "scene2_button_label": "Continue", "scene2_email_placeholder_text": "Your email here", "scene2_dismiss_button_text": "Dismiss", "utm_term": "20119", "utm_campaign": "f100_week1__nofxaccount", "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20119", "weight": 50, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Bank, stream, and tweet with peace of mind. Your Firefox Account lets you securely access passwords wherever you internet. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/d9d3d961-4c6b-415c-b640-9d77efb36e4c.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week1_nofxa_bank&utm_term=20115&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20115&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20115", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Free your mind and the tabs will follow. Sign up for a Firefox Account to make your internet a whole lot easier. ", "icon": "https://snippets.cdn.mozilla.net/media/icons/9ab32a20-c5fe-4825-bee3-fcded4c59614.png", "button_label": "Learn More", "button_url": "https://www.mozilla.org/firefox/accounts/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week1_nofxa_free&utm_term=20096&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20096&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20096", "weight": 100, "campaign": "f100 fx account", "targeting": "(isFxAEnabled == undefined || isFxAEnabled == true) && usesFirefoxSync == false && ((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Fun fact: Firefox users are the smartest, funniest, best-looking people on the web. [Citation needed]", "icon": "https://snippets.cdn.mozilla.net/media/icons/329c86d8-fc8c-4b15-9b66-fcd8a75184b4.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 delight funfact&utm_term=20090&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20090", "weight": 50, "campaign": "f100 delight funfact", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Power up Firefox with add-ons. Choose from dozens of customizations for privacy, social, gaming, and a whole lot more.", "icon": "https://snippets.cdn.mozilla.net/media/icons/8e12ba63-596b-4b12-95d8-7cf7fa07759a.png", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 addons power up&utm_term=20089&utm_content=REL", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {"link0": {"url": "https://addons.mozilla.org/en-US/firefox/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100_week1_utility_addons_powerup&utm_term=20089&utm_content=rel"}}}, "id": "20089", "weight": 50, "campaign": "f100 addons power up", "targeting": "((currentDate|date - profileAgeCreated) / 604800000) >= 1 && ((currentDate|date - profileAgeCreated) / 604800000) < 2"}, {"template": "simple_snippet", "template_version": "1.0.0", "content": {"text": "Send files with an encrypted link that automatically expires \u2013 because you don\u2019t need your stuff to live online forever.", "icon": "https://snippets.cdn.mozilla.net/media/icons/f469902f-1f22-467a-be45-848ab88ed39c.png", "button_label": "Go to Firefox Send", "button_url": "https://send.firefox.com/?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=en_f100_week1_send3&utm_term=20087&utm_content=REL_ESR", "section_title_icon": "https://snippets.cdn.mozilla.net/media/icons/5878847e-a1fb-4204-aad9-09f6cf7f99ee.png", "section_title_text": "Messages from Firefox", "section_title_url": "https://support.mozilla.org/kb/snippets-firefox-faq?utm_source=desktop-snippet&utm_medium=snippet&utm_campaign=f100 fx account&utm_term=20087&utm_content=REL_ESR", "tall": false, "block_button_text": "Remove this", "do_not_autoblock": false, "links": {}}, "id": "20087", "weight": 100, "campaign": "f100 fx account", "targeting": "true"}], "metadata": {"generated_at": "2020-01-09T21:59:35.506224", "number_of_snippets": 252}} diff --git a/testing/talos/talos/tests/about-newtab/topstories.json b/testing/talos/talos/tests/about-newtab/topstories.json deleted file mode 100644 index 42ea215b2b1a..000000000000 --- a/testing/talos/talos/tests/about-newtab/topstories.json +++ /dev/null @@ -1 +0,0 @@ -{"status":1,"settings":{"spocsPerNewTabs":0.5,"domainAffinityParameterSets":{"default":{"recencyFactor":0.5,"frequencyFactor":0.5,"combinedDomainFactor":0.5,"perfectFrequencyVisits":10,"perfectCombinedDomainScore":2,"multiDomainBoost":0,"itemScoreFactor":1},"fully-personalized":{"recencyFactor":0.5,"frequencyFactor":0.5,"combinedDomainFactor":0.5,"perfectFrequencyVisits":10,"perfectCombinedDomainScore":2,"itemScoreFactor":0.01,"multiDomainBoost":0}},"timeSegments":[{"id":"week","startTime":604800,"endTime":0,"weightPosition":1},{"id":"month","startTime":2592000,"endTime":604800,"weightPosition":0.5}],"recsExpireTime":5400,"version":"2c2aa06dac65ddb647d8902aaa60263c8e119ff2"},"spocs":[],"recommendations":[{"id":53258,"url":"https:\/\/www.bbc.com\/future\/article\/20200128-how-did-the-last-neanderthals-live?utm_source=pocket-newtab","domain":"bbc.com","title":"How did the last Neanderthals live?","excerpt":"In many ways, the last surviving Neanderthals are a mystery. But four caves in Gibraltar have given an unprecedented insight into what their lives might have been like.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580277600","engagement":"","parameter_set":"default","domain_affinities":{"centauri-dreams.org":"1.0000","astronomy.com":"1.0000","symmetrymagazine.org":"1.0000","preposterousuniverse.com":"1.0000","home.cern":"1.0000","astrologyzone.com":"0.9968","universetoday.com":"0.9964","planetary.org":"0.9954","skyandtelescope.com":"0.9896","earthsky.org":"0.9872","hakaimagazine.com":"0.9868","aps.org":"0.9867","dailygalaxy.com":"0.9854","biologos.org":"0.9835","evolution-institute.org":"0.9826","physicsworld.com":"0.9802","noaa.gov":"0.9770","cafeastrology.com":"0.9766","thespacereview.com":"0.9743","lensrentals.com":"0.9731","xkcd.com":"0.9703","greatamericaneclipse.com":"0.9702","space.com":"0.9699","nasa.gov":"0.9695","caltech.edu":"0.9689","e27.co":"0.9657","evolutionnews.org":"0.9654","elifesciences.org":"0.9629","biorxiv.org":"0.9620","lonelyspeck.com":"0.9494","esa.int":"0.9486","retractionwatch.com":"0.9484","ias.edu":"0.9406","sspnet.org":"0.9375","jhu.edu":"0.9370","spacenews.com":"0.9362","stephenwolfram.com":"0.9345","climatecentral.org":"0.9322","eos.org":"0.9313","iai.tv":"0.9296","academia.edu":"0.9293","ancient-code.com":"0.9267","cosmosmagazine.com":"0.9241","semanticscholar.org":"0.9185","airspacemag.com":"0.9171","sciencefriday.com":"0.9159","eclipse2017.org":"0.9157","scottaaronson.com":"0.9122","pnas.org":"0.9111","quantamagazine.org":"0.9068","osf.io":"0.9063","fermatslibrary.com":"0.9033","timeanddate.com":"0.8986","23andme.com":"0.8821","sciencenews.org":"0.8707","phys.org":"0.8692","js.org":"0.8518","carbonbrief.org":"0.8461","iop.org":"0.8390","apnic.net":"0.7945","pionic.org":"0.7581","nature.com":"0.7393","futurism.com":"0.7353","chemistryworld.com":"0.7343","trendintech.com":"0.7256","discovermagazine.com":"0.7246","tandfonline.com":"0.7170","nautil.us":"0.7139","kurzweilai.net":"0.7068","sciencealert.com":"0.7040","ucsc.edu":"0.7022","seeker.com":"0.6867","livescience.com":"0.6848","sciencemag.org":"0.6813","brown.edu":"0.6728","elsevier.com":"0.6644","edge.org":"0.6598","arxiv.org":"0.6514","secondnexus.com":"0.6479","radiolab.org":"0.6464","waitbutwhy.com":"0.6457","mindhacks.com":"0.6451","curiosity.com":"0.6430","nuclearsecrecy.com":"0.6426","andrewgelman.com":"0.6358","newscientist.com":"0.6341","si.edu":"0.6281","techxplore.com":"0.6257","lesswrong.com":"0.6201","scientificamerican.com":"0.6175","energy.gov":"0.6154","philosophynow.org":"0.6116","iflscience.com":"0.5847","lastwordonnothing.com":"0.5763","kaggle.com":"0.5738","undark.org":"0.5732","nextbigfuture.com":"0.5708","fastforwardlabs.com":"0.5705","3quarksdaily.com":"0.5656","heterodoxacademy.org":"0.5587","pitt.edu":"0.5581","frontiersin.org":"0.5539","realclearscience.com":"0.5516","researchgate.net":"0.5363","bigthink.com":"0.5338","cam.ac.uk":"0.5335","evanmiller.org":"0.5311","newatlas.com":"0.5275","lse.ac.uk":"0.5234","kottke.org":"0.5233","techtimes.com":"0.5232","illinois.edu":"0.5152","inverse.com":"0.5040","plos.org":"0.4980","popularmechanics.com":"0.4953","smithsonianmag.com":"0.4839","aeon.co":"0.4728","nationalgeographic.com":"0.4513","atlasobscura.com":"0.4439","petapixel.com":"0.4353","brainpickings.org":"0.4341","quillette.com":"0.4299","sciencedaily.com":"0.4210","neurosciencenews.com":"0.4007","stanford.edu":"0.3829","slatestarcodex.com":"0.3760","technologyreview.com":"0.3702","singularityhub.com":"0.3698","popsci.com":"0.3329","evonomics.com":"0.3269","openculture.com":"0.3076","ieee.org":"0.3062","collective-evolution.com":"0.3013","farnamstreetblog.com":"0.2988","medicalxpress.com":"0.2972","ted.com":"0.2836","hackaday.com":"0.2778","mentalfloss.com":"0.2728","theconversation.com":"0.2696","arstechnica.com":"0.2642","nymag.com":"0.2615","mit.edu":"0.2566","gizmodo.com":"0.2519","bbc.com":"0.2445","jamesclear.com":"0.2140","wired.co.uk":"0.2112","statnews.com":"0.2110","listverse.com":"0.2074","yahoo.com":"0.1969","nbcnews.com":"0.1895","nih.gov":"0.1861","wired.com":"0.1852","npr.org":"0.1630","telegraph.co.uk":"0.1507","paulgraham.com":"0.1350","qz.com":"0.1350","medicalnewstoday.com":"0.1347","ycombinator.com":"0.1271","bbc.co.uk":"0.1236","engadget.com":"0.1221","axios.com":"0.1215","newsweek.com":"0.1213","weforum.org":"0.1213","time.com":"0.1212","freecodecamp.org":"0.1176","propublica.org":"0.1169","thebaffler.com":"0.1128","thehindu.com":"0.1115","theguardian.com":"0.1103","boingboing.net":"0.1101","harvard.edu":"0.1091","vice.com":"0.1039","fivethirtyeight.com":"0.1004","independent.co.uk":"0.0994","lrb.co.uk":"0.0950","theatlantic.com":"0.0915","theverge.com":"0.0892","psychologytoday.com":"0.0860"},"item_score":1,"raw_image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg=="},{"id":53245,"url":"https:\/\/getpocket.com\/explore\/item\/secret-life-of-the-tower-of-london-s-chief-guard?utm_source=pocket-newtab","domain":"narratively.com","title":"Secret Life of the Tower of London\u2019s Chief Guard","excerpt":"On the eve of his retirement, the foremost symbol of jolly old England recalls decades spent sleeping in a former prison cell while watching over Her Majesty\u2019s ancient fortress.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"thetransportpolitic.com":"0.9978","hostelworld.com":"0.9976","askthepilot.com":"0.9898","traveller.com.au":"0.9736","thepointsguy.com":"0.9709","travelchannel.com":"0.9687","ianvisits.co.uk":"0.9687","skift.com":"0.9666","roughguides.com":"0.9634","smartertravel.com":"0.9607","oyster.com":"0.9604","booking.com":"0.9599","wikitravel.org":"0.9590","millionmilesecrets.com":"0.9587","carryology.com":"0.9579","lonelyplanet.com":"0.9558","japan-guide.com":"0.9528","nomadicmatt.com":"0.9509","tnooz.com":"0.9421","travelpulse.com":"0.9387","boardingarea.com":"0.9382","ricksteves.com":"0.9325","cntraveller.com":"0.9263","wheretraveler.com":"0.9250","jetsetter.com":"0.9208","marriott.com":"0.9148","afar.com":"0.9143","cntraveler.com":"0.9115","tripadvisor.com":"0.9097","ecophiles.com":"0.9063","nps.gov":"0.9038","fodors.com":"0.8980","tripsavvy.com":"0.8905","flightradar24.com":"0.8861","adventure-journal.com":"0.8798","coastalliving.com":"0.8487","travelandleisure.com":"0.8481","cntraveller.in":"0.8468","gearjunkie.com":"0.8212","rei.com":"0.7920","airbnb.com":"0.7910","vivalifestyleandtravel.com":"0.7891","streetsblog.org":"0.7831","explorepartsunknown.com":"0.7773","sunset.com":"0.7724","matadornetwork.com":"0.7616","theculturetrip.com":"0.7472","onlyinyourstate.com":"0.7431","everydaycarry.com":"0.7418","dwell.com":"0.7297","curbed.com":"0.7269","messynessychic.com":"0.7028","robbreport.com":"0.6929","backpacker.com":"0.6861","designyoutrust.com":"0.6743","architecturaldigest.com":"0.6710","chrisguillebeau.com":"0.6703","10best.com":"0.6586","levels.io":"0.6550","outsideonline.com":"0.6536","alaskaair.com":"0.6448","citymetric.com":"0.6409","nuclearsecrecy.com":"0.6383","thevintagenews.com":"0.6307","hcn.org":"0.6227","timeout.com":"0.6222","roadsandkingdoms.com":"0.6199","dezeen.com":"0.6129","londonist.com":"0.6073","thrillist.com":"0.6036","mansionglobal.com":"0.5890","design-milk.com":"0.5880","archdaily.com":"0.5840","500px.com":"0.5817","gardenandgun.com":"0.5746","eventbrite.com":"0.5634","dcist.com":"0.5427","fluentin3months.com":"0.5402","tynan.com":"0.5337","mrporter.com":"0.5315","insidehook.com":"0.5205","nationalgeographic.com":"0.5194","atlasobscura.com":"0.5084","surfer.com":"0.5000","wisebread.com":"0.4988","narrative.ly":"0.4733","gearpatrol.com":"0.4514","citylab.com":"0.4403","boredpanda.com":"0.4118","sfgate.com":"0.4115","thebookoflife.org":"0.4038","thisisinsider.com":"0.4036","indiehackers.com":"0.3882","petapixel.com":"0.3700","mercurynews.com":"0.3689","ribbonfarm.com":"0.3536","timeline.com":"0.3263","techinasia.com":"0.3226","gothamist.com":"0.3188","thepennyhoarder.com":"0.2899","popularmechanics.com":"0.2780","krebsonsecurity.com":"0.2659","digital-photography-school.com":"0.2613","thewirecutter.com":"0.2355","nerdwallet.com":"0.2335","yahoo.com":"0.2295","artsy.net":"0.2244","saveur.com":"0.2000"},"item_score":0.98333333333333},{"id":53266,"url":"https:\/\/www.shondaland.com\/live\/money\/a30656026\/the-art-of-kakeibo-this-japanese-budgeting-system-could-change-your-financial-life\/?utm_source=pocket-newtab","domain":"shondaland.com","title":"The Art of Kakeibo: This Japanese Budgeting System Could Change Your Financial Life","excerpt":"Get your spending in line with this innovative way to save money.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580317200","engagement":"","parameter_set":"default","domain_affinities":{"investor.gov":"1.0000","pensionpartners.com":"1.0000","microcapclub.com":"1.0000","thinknewfound.com":"1.0000","philosophicaleconomics.com":"1.0000","theirrelevantinvestor.com":"0.9976","etf.com":"0.9966","vanguard.com":"0.9956","ofdollarsanddata.com":"0.9942","aqr.com":"0.9920","equifax.com":"0.9892","betterment.com":"0.9846","basehitinvesting.com":"0.9799","bogleheads.org":"0.9779","alphaarchitect.com":"0.9764","millennialmoneyman.com":"0.9736","monevator.com":"0.9715","acorns.com":"0.9672","bis.org":"0.9643","jasonzweig.com":"0.9631","mebfaber.com":"0.9631","whitecoatinvestor.com":"0.9622","jlcollinsnh.com":"0.9582","schwab.com":"0.9540","zacks.com":"0.9532","tradingview.com":"0.9519","aswathdamodaran.blogspot.com":"0.9511","valueresearchonline.com":"0.9495","kitces.com":"0.9464","gurufocus.com":"0.9456","wealthfront.com":"0.9456","thisismoney.co.uk":"0.9441","budgetsaresexy.com":"0.9441","daveramsey.com":"0.9412","fidelity.com":"0.9402","eladgil.com":"0.9317","physicianonfire.com":"0.9304","wealthmanagement.com":"0.9297","usv.com":"0.9283","federalreserve.gov":"0.9274","investing.com":"0.9273","humbledollar.com":"0.9261","madfientist.com":"0.9250","investorplace.com":"0.9234","stocktwits.com":"0.9207","wealthsimple.com":"0.9193","getrichslowly.org":"0.9121","awealthofcommonsense.com":"0.9116","morningstar.com":"0.9089","moneysense.ca":"0.9055","pragcap.com":"0.9032","investopedia.com":"0.9030","stockcharts.com":"0.9023","retirebeforedad.com":"0.9001","advisorperspectives.com":"0.8976","nerdwallet.com":"0.8974","investmentnews.com":"0.8957","institutionalinvestor.com":"0.8932","mint.com":"0.8924","cfainstitute.org":"0.8890","kiplinger.com":"0.8854","thefinancialbrand.com":"0.8777","chase.com":"0.8713","bankrate.com":"0.8712","biggerpockets.com":"0.8665","financial-planning.com":"0.8579","youneedabudget.com":"0.8575","safalniveshak.com":"0.8572","valuewalk.com":"0.8548","ftc.gov":"0.8539","affordanything.com":"0.8510","sec.gov":"0.8505","credit.com":"0.8457","financialsamurai.com":"0.8429","ml.com":"0.8409","thepennyhoarder.com":"0.8390","frugalwoods.com":"0.8377","seekingalpha.com":"0.8351","intrinsicinvesting.com":"0.8330","freakonomics.com":"0.8318","mrmoneymustache.com":"0.8314","wolfstreet.com":"0.8308","moneycontrol.com":"0.8300","richdad.com":"0.8294","goldmansachs.com":"0.8285","crowdfundinsider.com":"0.8278","thinkadvisor.com":"0.8232","fool.com":"0.8100","letstalkpayments.com":"0.8098","bnn.ca":"0.8056","ubs.com":"0.8008","gobankingrates.com":"0.7933","financemagnates.com":"0.7917","quantstart.com":"0.7786","imf.org":"0.7757","moneysavingexpert.com":"0.7755","bankofamerica.com":"0.7754","clark.com":"0.7655","coindesk.com":"0.7354","cointelegraph.com":"0.7283","thesimpledollar.com":"0.7255","barrons.com":"0.7200","marketwatch.com":"0.7157","thestreet.com":"0.6771","krebsonsecurity.com":"0.6102","afr.com":"0.5863","indiatimes.com":"0.5644","avc.com":"0.5525","cnbc.com":"0.4986","thebalance.com":"0.4610","25iq.com":"0.4232","evonomics.com":"0.4116","consumerreports.org":"0.3695","zerohedge.com":"0.3519","livemint.com":"0.3457","jamesaltucher.com":"0.3257","bloomberg.com":"0.3092","iwillteachyoutoberich.com":"0.2986","cbinsights.com":"0.2957","ycombinator.com":"0.2725","businessinsider.com":"0.2722","farnamstreetblog.com":"0.2539","dariusforoux.com":"0.2356","fortune.com":"0.2267","hackernoon.com":"0.2147","udemy.com":"0.2126","project-syndicate.org":"0.2078","tomtunguz.com":"0.1851","opendemocracy.net":"0.1721","theglobeandmail.com":"0.1693","ft.com":"0.1641"},"item_score":0.96666666666667},{"id":53264,"url":"https:\/\/www.theverge.com\/2020\/1\/31\/21115862\/davos-1-trillion-trees-controversy-world-economic-forum-campaign?utm_source=pocket-newtab","domain":"theverge.com","title":"Planting 1 trillion trees might not actually be a good idea","excerpt":"The World Economic Forum\u2019s plan to plant 1 trillion trees is backed by controversial science.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580479200","engagement":"","parameter_set":"default","domain_affinities":{"centauri-dreams.org":"1.0000","astronomy.com":"1.0000","symmetrymagazine.org":"1.0000","preposterousuniverse.com":"1.0000","home.cern":"1.0000","astrologyzone.com":"0.9968","universetoday.com":"0.9964","planetary.org":"0.9954","skyandtelescope.com":"0.9896","earthsky.org":"0.9872","hakaimagazine.com":"0.9868","aps.org":"0.9867","dailygalaxy.com":"0.9854","biologos.org":"0.9835","evolution-institute.org":"0.9826","physicsworld.com":"0.9802","noaa.gov":"0.9770","cafeastrology.com":"0.9766","thespacereview.com":"0.9743","lensrentals.com":"0.9731","xkcd.com":"0.9703","greatamericaneclipse.com":"0.9702","space.com":"0.9699","nasa.gov":"0.9695","caltech.edu":"0.9689","e27.co":"0.9657","evolutionnews.org":"0.9654","elifesciences.org":"0.9629","biorxiv.org":"0.9620","lonelyspeck.com":"0.9494","esa.int":"0.9486","retractionwatch.com":"0.9484","ias.edu":"0.9406","sspnet.org":"0.9375","jhu.edu":"0.9370","spacenews.com":"0.9362","stephenwolfram.com":"0.9345","climatecentral.org":"0.9322","eos.org":"0.9313","iai.tv":"0.9296","academia.edu":"0.9293","ancient-code.com":"0.9267","cosmosmagazine.com":"0.9241","semanticscholar.org":"0.9185","airspacemag.com":"0.9171","sciencefriday.com":"0.9159","eclipse2017.org":"0.9157","scottaaronson.com":"0.9122","pnas.org":"0.9111","quantamagazine.org":"0.9068","osf.io":"0.9063","fermatslibrary.com":"0.9033","timeanddate.com":"0.8986","23andme.com":"0.8821","sciencenews.org":"0.8707","phys.org":"0.8692","js.org":"0.8518","carbonbrief.org":"0.8461","iop.org":"0.8390","apnic.net":"0.7945","pionic.org":"0.7581","nature.com":"0.7393","futurism.com":"0.7353","chemistryworld.com":"0.7343","trendintech.com":"0.7256","discovermagazine.com":"0.7246","tandfonline.com":"0.7170","nautil.us":"0.7139","kurzweilai.net":"0.7068","sciencealert.com":"0.7040","ucsc.edu":"0.7022","seeker.com":"0.6867","livescience.com":"0.6848","sciencemag.org":"0.6813","brown.edu":"0.6728","elsevier.com":"0.6644","edge.org":"0.6598","arxiv.org":"0.6514","secondnexus.com":"0.6479","radiolab.org":"0.6464","waitbutwhy.com":"0.6457","mindhacks.com":"0.6451","curiosity.com":"0.6430","nuclearsecrecy.com":"0.6426","andrewgelman.com":"0.6358","newscientist.com":"0.6341","si.edu":"0.6281","techxplore.com":"0.6257","lesswrong.com":"0.6201","scientificamerican.com":"0.6175","energy.gov":"0.6154","philosophynow.org":"0.6116","iflscience.com":"0.5847","lastwordonnothing.com":"0.5763","kaggle.com":"0.5738","undark.org":"0.5732","nextbigfuture.com":"0.5708","fastforwardlabs.com":"0.5705","3quarksdaily.com":"0.5656","heterodoxacademy.org":"0.5587","pitt.edu":"0.5581","frontiersin.org":"0.5539","realclearscience.com":"0.5516","researchgate.net":"0.5363","bigthink.com":"0.5338","cam.ac.uk":"0.5335","evanmiller.org":"0.5311","newatlas.com":"0.5275","lse.ac.uk":"0.5234","kottke.org":"0.5233","techtimes.com":"0.5232","illinois.edu":"0.5152","inverse.com":"0.5040","plos.org":"0.4980","popularmechanics.com":"0.4953","smithsonianmag.com":"0.4839","aeon.co":"0.4728","nationalgeographic.com":"0.4513","atlasobscura.com":"0.4439","petapixel.com":"0.4353","brainpickings.org":"0.4341","quillette.com":"0.4299","sciencedaily.com":"0.4210","neurosciencenews.com":"0.4007","stanford.edu":"0.3829","slatestarcodex.com":"0.3760","technologyreview.com":"0.3702","singularityhub.com":"0.3698","popsci.com":"0.3329","evonomics.com":"0.3269","openculture.com":"0.3076","ieee.org":"0.3062","collective-evolution.com":"0.3013","farnamstreetblog.com":"0.2988","medicalxpress.com":"0.2972","ted.com":"0.2836","hackaday.com":"0.2778","mentalfloss.com":"0.2728","theconversation.com":"0.2696","arstechnica.com":"0.2642","nymag.com":"0.2615","mit.edu":"0.2566","gizmodo.com":"0.2519","bbc.com":"0.2445","jamesclear.com":"0.2140","wired.co.uk":"0.2112","statnews.com":"0.2110","listverse.com":"0.2074","yahoo.com":"0.1969","nbcnews.com":"0.1895","nih.gov":"0.1861","wired.com":"0.1852","npr.org":"0.1630","telegraph.co.uk":"0.1507","paulgraham.com":"0.1350","qz.com":"0.1350","medicalnewstoday.com":"0.1347","ycombinator.com":"0.1271","bbc.co.uk":"0.1236","engadget.com":"0.1221","axios.com":"0.1215","newsweek.com":"0.1213","weforum.org":"0.1213","time.com":"0.1212","freecodecamp.org":"0.1176","propublica.org":"0.1169","thebaffler.com":"0.1128","thehindu.com":"0.1115","theguardian.com":"0.1103","boingboing.net":"0.1101","harvard.edu":"0.1091","vice.com":"0.1039","fivethirtyeight.com":"0.1004","independent.co.uk":"0.0994","lrb.co.uk":"0.0950","theatlantic.com":"0.0915","theverge.com":"0.0892","psychologytoday.com":"0.0860"},"item_score":0.95},{"id":53262,"url":"https:\/\/www.hollywoodreporter.com\/features\/catherine-burns-inside-50-year-disappearance-an-oscar-nominee-1275646?utm_source=pocket-newtab","domain":"hollywoodreporter.com","title":"Catherine Burns: The Vanishing of an Oscar-Nominated Actress","excerpt":"Fifty years ago, her searing supporting role in 'Last \u202fSummer' led to critical acclaim and Academy recognition, but the actress soon disappeared from Hollywood, leaving her fans and showbiz admirers searching for answers.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580738400","engagement":"","parameter_set":"default","domain_affinities":{"newalbumreleases.net":"1.0000","comicbookmovie.com":"1.0000","drownedinsound.com":"1.0000","thefilmstage.com":"1.0000","winteriscoming.net":"1.0000","udiscovermusic.com":"1.0000","teamrock.com":"1.0000","cinephiliabeyond.org":"0.9989","cashmusic.org":"0.9977","guitarworld.com":"0.9969","comingsoon.net":"0.9943","tasteofcinema.com":"0.9924","djbooth.net":"0.9921","musicbusinessworldwide.com":"0.9916","thevinylfactory.com":"0.9905","theplaylist.net":"0.9901","reverb.com":"0.9895","talkhouse.com":"0.9891","ultimateclassicrock.com":"0.9888","crackmagazine.net":"0.9884","screencrush.com":"0.9884","pigeonsandplanes.com":"0.9871","redbullmusicacademy.com":"0.9864","musicradar.com":"0.9859","discogs.com":"0.9858","interviewmagazine.com":"0.9855","moviefone.com":"0.9854","xxlmag.com":"0.9853","xiph.org":"0.9853","pitchfork.com":"0.9851","ask.audio":"0.9846","lwlies.com":"0.9842","screenrant.com":"0.9841","cbr.com":"0.9831","stereogum.com":"0.9824","soundonsound.com":"0.9821","premierguitar.com":"0.9818","factmag.com":"0.9815","rottentomatoes.com":"0.9812","bloody-disgusting.com":"0.9795","bfi.org.uk":"0.9785","spin.com":"0.9784","ableton.com":"0.9776","filmschoolrejects.com":"0.9767","indiewire.com":"0.9766","loudwire.com":"0.9763","cinemablend.com":"0.9738","criterion.com":"0.9736","moviepilot.com":"0.9720","slashfilm.com":"0.9717","brooklynvegan.com":"0.9701","welcometotwinpeaks.com":"0.9698","bandcamp.com":"0.9695","letterboxd.com":"0.9675","denofgeek.com":"0.9666","thequietus.com":"0.9650","newsarama.com":"0.9634","empireonline.com":"0.9631","mubi.com":"0.9630","comicbook.com":"0.9617","collider.com":"0.9611","consequenceofsound.net":"0.9607","filmcomment.com":"0.9592","digitalspy.com":"0.9587","geektyrant.com":"0.9523","brightwalldarkroom.com":"0.9507","ultimate-guitar.com":"0.9504","starwars.com":"0.9500","residentadvisor.net":"0.9484","digitalmusicnews.com":"0.9472","billboard.com":"0.9434","mixmag.net":"0.9421","hypebot.com":"0.9404","cdm.link":"0.9344","looper.com":"0.9322","movieweb.com":"0.9309","birthmoviesdeath.com":"0.9286","slantmagazine.com":"0.9284","thelineofbestfit.com":"0.9273","rogerebert.com":"0.9248","westeros.org":"0.9208","nerdist.com":"0.9170","nofilmschool.com":"0.9167","nme.com":"0.9149","popmatters.com":"0.9139","screendaily.com":"0.9062","uproxx.com":"0.9054","comicsbeat.com":"0.9049","tvline.com":"0.9029","ew.com":"0.9021","massappeal.com":"0.8970","bleedingcool.com":"0.8933","metacritic.com":"0.8929","flickeringmyth.com":"0.8929","blcklst.com":"0.8895","vulture.com":"0.8824","wmagazine.com":"0.8794","mixcloud.com":"0.8778","decider.com":"0.8741","tvguide.com":"0.8734","hollywoodreporter.com":"0.8730","premiumbeat.com":"0.8705","shortlist.com":"0.8660","okayplayer.com":"0.8652","etonline.com":"0.8642","genius.com":"0.8559","filmmakermagazine.com":"0.8504","whatculture.com":"0.8435","variety.com":"0.8371","avclub.com":"0.8295","thewrap.com":"0.8256","complex.com":"0.8251","spotify.com":"0.8211","hollywoodlife.com":"0.8163","deadline.com":"0.8157","netflix.com":"0.8060","justjared.com":"0.8002","playbill.com":"0.7964","eonline.com":"0.7959","artforum.com":"0.7956","thefader.com":"0.7916","dorkly.com":"0.7893","dangerousminds.net":"0.7860","imdb.com":"0.7807","soundcloud.com":"0.7390","dazeddigital.com":"0.7364","tor.com":"0.7086","glamour.com":"0.7076","syfy.com":"0.6875","ign.com":"0.6638","villagevoice.com":"0.6562","wikia.com":"0.6387","archiveofourown.org":"0.6365","pastemagazine.com":"0.6269","youtube.com":"0.6245","livejournal.com":"0.6182","vimeo.com":"0.6179","indiegogo.com":"0.6148","cracked.com":"0.6124","rollingstone.com":"0.6058","themarysue.com":"0.5897","openculture.com":"0.5567","highsnobiety.com":"0.5444","laweekly.com":"0.5333","imgur.com":"0.5240","mentalfloss.com":"0.4765","gizmodo.com":"0.4624","kottke.org":"0.4555","elle.com":"0.4470","thrillist.com":"0.4312","grantland.com":"0.4119","theparisreview.org":"0.4016","boredpanda.com":"0.3916","gq.com":"0.3831","gothamist.com":"0.3820","theringer.com":"0.3797","jezebel.com":"0.3583","sfchronicle.com":"0.3575","yahoo.com":"0.3412","vanityfair.com":"0.3264","listverse.com":"0.3008","polygon.com":"0.2954","msn.com":"0.2648","esquire.com":"0.2336"},"item_score":0.93333333333333},{"id":53260,"url":"https:\/\/bittersoutherner.com\/keeping-the-country-myakka-river-valley-florida?utm_source=pocket-newtab","domain":"bittersoutherner.com","title":"Keeping the Country","excerpt":"Over the course of centuries, southwest Florida's Myakka River Valley has remained largely untouched. But in the past few decades, increased development and population growth threatened to pave over this little-known wilderness.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580191200","engagement":"","parameter_set":"default","domain_affinities":{"thetransportpolitic.com":"0.9978","hostelworld.com":"0.9976","askthepilot.com":"0.9898","traveller.com.au":"0.9736","thepointsguy.com":"0.9709","travelchannel.com":"0.9687","ianvisits.co.uk":"0.9687","skift.com":"0.9666","roughguides.com":"0.9634","smartertravel.com":"0.9607","oyster.com":"0.9604","booking.com":"0.9599","wikitravel.org":"0.9590","millionmilesecrets.com":"0.9587","carryology.com":"0.9579","lonelyplanet.com":"0.9558","japan-guide.com":"0.9528","nomadicmatt.com":"0.9509","tnooz.com":"0.9421","travelpulse.com":"0.9387","boardingarea.com":"0.9382","ricksteves.com":"0.9325","cntraveller.com":"0.9263","wheretraveler.com":"0.9250","jetsetter.com":"0.9208","marriott.com":"0.9148","afar.com":"0.9143","cntraveler.com":"0.9115","tripadvisor.com":"0.9097","ecophiles.com":"0.9063","nps.gov":"0.9038","fodors.com":"0.8980","tripsavvy.com":"0.8905","flightradar24.com":"0.8861","adventure-journal.com":"0.8798","coastalliving.com":"0.8487","travelandleisure.com":"0.8481","cntraveller.in":"0.8468","gearjunkie.com":"0.8212","rei.com":"0.7920","airbnb.com":"0.7910","vivalifestyleandtravel.com":"0.7891","streetsblog.org":"0.7831","explorepartsunknown.com":"0.7773","sunset.com":"0.7724","matadornetwork.com":"0.7616","theculturetrip.com":"0.7472","onlyinyourstate.com":"0.7431","everydaycarry.com":"0.7418","dwell.com":"0.7297","curbed.com":"0.7269","messynessychic.com":"0.7028","robbreport.com":"0.6929","backpacker.com":"0.6861","designyoutrust.com":"0.6743","architecturaldigest.com":"0.6710","chrisguillebeau.com":"0.6703","10best.com":"0.6586","levels.io":"0.6550","outsideonline.com":"0.6536","alaskaair.com":"0.6448","citymetric.com":"0.6409","nuclearsecrecy.com":"0.6383","thevintagenews.com":"0.6307","hcn.org":"0.6227","timeout.com":"0.6222","roadsandkingdoms.com":"0.6199","dezeen.com":"0.6129","londonist.com":"0.6073","thrillist.com":"0.6036","mansionglobal.com":"0.5890","design-milk.com":"0.5880","archdaily.com":"0.5840","500px.com":"0.5817","gardenandgun.com":"0.5746","eventbrite.com":"0.5634","dcist.com":"0.5427","fluentin3months.com":"0.5402","tynan.com":"0.5337","mrporter.com":"0.5315","insidehook.com":"0.5205","nationalgeographic.com":"0.5194","atlasobscura.com":"0.5084","surfer.com":"0.5000","wisebread.com":"0.4988","narrative.ly":"0.4733","gearpatrol.com":"0.4514","citylab.com":"0.4403","boredpanda.com":"0.4118","sfgate.com":"0.4115","thebookoflife.org":"0.4038","thisisinsider.com":"0.4036","indiehackers.com":"0.3882","petapixel.com":"0.3700","mercurynews.com":"0.3689","ribbonfarm.com":"0.3536","timeline.com":"0.3263","techinasia.com":"0.3226","gothamist.com":"0.3188","thepennyhoarder.com":"0.2899","popularmechanics.com":"0.2780","krebsonsecurity.com":"0.2659","digital-photography-school.com":"0.2613","thewirecutter.com":"0.2355","nerdwallet.com":"0.2335","yahoo.com":"0.2295","artsy.net":"0.2244","saveur.com":"0.2000"},"item_score":0.91666666666667},{"id":53255,"url":"https:\/\/www.nytimes.com\/2020\/01\/31\/style\/modern-love-cruise-tinder-crushes-thrive-in-small-spaces.html?utm_source=pocket-newtab","domain":"nytimes.com","title":"\u2018Crushes Thrive in Small Spaces\u2019","excerpt":"If Tinder is about your first impression, working on a cruise ship is about your 15th impression, or 29th. Among the many nicknames Erik had for me, my least favorite was Tinder.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580450400","engagement":"","parameter_set":"default","domain_affinities":{"thetransportpolitic.com":"0.9978","hostelworld.com":"0.9976","askthepilot.com":"0.9898","traveller.com.au":"0.9736","thepointsguy.com":"0.9709","travelchannel.com":"0.9687","ianvisits.co.uk":"0.9687","skift.com":"0.9666","roughguides.com":"0.9634","smartertravel.com":"0.9607","oyster.com":"0.9604","booking.com":"0.9599","wikitravel.org":"0.9590","millionmilesecrets.com":"0.9587","carryology.com":"0.9579","lonelyplanet.com":"0.9558","japan-guide.com":"0.9528","nomadicmatt.com":"0.9509","tnooz.com":"0.9421","travelpulse.com":"0.9387","boardingarea.com":"0.9382","ricksteves.com":"0.9325","cntraveller.com":"0.9263","wheretraveler.com":"0.9250","jetsetter.com":"0.9208","marriott.com":"0.9148","afar.com":"0.9143","cntraveler.com":"0.9115","tripadvisor.com":"0.9097","ecophiles.com":"0.9063","nps.gov":"0.9038","fodors.com":"0.8980","tripsavvy.com":"0.8905","flightradar24.com":"0.8861","adventure-journal.com":"0.8798","coastalliving.com":"0.8487","travelandleisure.com":"0.8481","cntraveller.in":"0.8468","gearjunkie.com":"0.8212","rei.com":"0.7920","airbnb.com":"0.7910","vivalifestyleandtravel.com":"0.7891","streetsblog.org":"0.7831","explorepartsunknown.com":"0.7773","sunset.com":"0.7724","matadornetwork.com":"0.7616","theculturetrip.com":"0.7472","onlyinyourstate.com":"0.7431","everydaycarry.com":"0.7418","dwell.com":"0.7297","curbed.com":"0.7269","messynessychic.com":"0.7028","robbreport.com":"0.6929","backpacker.com":"0.6861","designyoutrust.com":"0.6743","architecturaldigest.com":"0.6710","chrisguillebeau.com":"0.6703","10best.com":"0.6586","levels.io":"0.6550","outsideonline.com":"0.6536","alaskaair.com":"0.6448","citymetric.com":"0.6409","nuclearsecrecy.com":"0.6383","thevintagenews.com":"0.6307","hcn.org":"0.6227","timeout.com":"0.6222","roadsandkingdoms.com":"0.6199","dezeen.com":"0.6129","londonist.com":"0.6073","thrillist.com":"0.6036","mansionglobal.com":"0.5890","design-milk.com":"0.5880","archdaily.com":"0.5840","500px.com":"0.5817","gardenandgun.com":"0.5746","eventbrite.com":"0.5634","dcist.com":"0.5427","fluentin3months.com":"0.5402","tynan.com":"0.5337","mrporter.com":"0.5315","insidehook.com":"0.5205","nationalgeographic.com":"0.5194","atlasobscura.com":"0.5084","surfer.com":"0.5000","wisebread.com":"0.4988","narrative.ly":"0.4733","gearpatrol.com":"0.4514","citylab.com":"0.4403","boredpanda.com":"0.4118","sfgate.com":"0.4115","thebookoflife.org":"0.4038","thisisinsider.com":"0.4036","indiehackers.com":"0.3882","petapixel.com":"0.3700","mercurynews.com":"0.3689","ribbonfarm.com":"0.3536","timeline.com":"0.3263","techinasia.com":"0.3226","gothamist.com":"0.3188","thepennyhoarder.com":"0.2899","popularmechanics.com":"0.2780","krebsonsecurity.com":"0.2659","digital-photography-school.com":"0.2613","thewirecutter.com":"0.2355","nerdwallet.com":"0.2335","yahoo.com":"0.2295","artsy.net":"0.2244","saveur.com":"0.2000"},"item_score":0.9},{"id":53234,"url":"https:\/\/getpocket.com\/explore\/item\/the-ancient-peruvian-mystery-solved-from-space?utm_source=pocket-newtab","domain":"bbc.com","title":"The Ancient Peruvian Mystery Solved From Space","excerpt":"These puzzling holes in the arid valleys of southern Peru tell us there was once a flourishing, sophisticated society here.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"centauri-dreams.org":"1.0000","astronomy.com":"1.0000","symmetrymagazine.org":"1.0000","preposterousuniverse.com":"1.0000","home.cern":"1.0000","astrologyzone.com":"0.9968","universetoday.com":"0.9964","planetary.org":"0.9954","skyandtelescope.com":"0.9896","earthsky.org":"0.9872","hakaimagazine.com":"0.9868","aps.org":"0.9867","dailygalaxy.com":"0.9854","biologos.org":"0.9835","evolution-institute.org":"0.9826","physicsworld.com":"0.9802","noaa.gov":"0.9770","cafeastrology.com":"0.9766","thespacereview.com":"0.9743","lensrentals.com":"0.9731","xkcd.com":"0.9703","greatamericaneclipse.com":"0.9702","space.com":"0.9699","nasa.gov":"0.9695","caltech.edu":"0.9689","e27.co":"0.9657","evolutionnews.org":"0.9654","elifesciences.org":"0.9629","biorxiv.org":"0.9620","lonelyspeck.com":"0.9494","esa.int":"0.9486","retractionwatch.com":"0.9484","ias.edu":"0.9406","sspnet.org":"0.9375","jhu.edu":"0.9370","spacenews.com":"0.9362","stephenwolfram.com":"0.9345","climatecentral.org":"0.9322","eos.org":"0.9313","iai.tv":"0.9296","academia.edu":"0.9293","ancient-code.com":"0.9267","cosmosmagazine.com":"0.9241","semanticscholar.org":"0.9185","airspacemag.com":"0.9171","sciencefriday.com":"0.9159","eclipse2017.org":"0.9157","scottaaronson.com":"0.9122","pnas.org":"0.9111","quantamagazine.org":"0.9068","osf.io":"0.9063","fermatslibrary.com":"0.9033","timeanddate.com":"0.8986","23andme.com":"0.8821","sciencenews.org":"0.8707","phys.org":"0.8692","js.org":"0.8518","carbonbrief.org":"0.8461","iop.org":"0.8390","apnic.net":"0.7945","pionic.org":"0.7581","nature.com":"0.7393","futurism.com":"0.7353","chemistryworld.com":"0.7343","trendintech.com":"0.7256","discovermagazine.com":"0.7246","tandfonline.com":"0.7170","nautil.us":"0.7139","kurzweilai.net":"0.7068","sciencealert.com":"0.7040","ucsc.edu":"0.7022","seeker.com":"0.6867","livescience.com":"0.6848","sciencemag.org":"0.6813","brown.edu":"0.6728","elsevier.com":"0.6644","edge.org":"0.6598","arxiv.org":"0.6514","secondnexus.com":"0.6479","radiolab.org":"0.6464","waitbutwhy.com":"0.6457","mindhacks.com":"0.6451","curiosity.com":"0.6430","nuclearsecrecy.com":"0.6426","andrewgelman.com":"0.6358","newscientist.com":"0.6341","si.edu":"0.6281","techxplore.com":"0.6257","lesswrong.com":"0.6201","scientificamerican.com":"0.6175","energy.gov":"0.6154","philosophynow.org":"0.6116","iflscience.com":"0.5847","lastwordonnothing.com":"0.5763","kaggle.com":"0.5738","undark.org":"0.5732","nextbigfuture.com":"0.5708","fastforwardlabs.com":"0.5705","3quarksdaily.com":"0.5656","heterodoxacademy.org":"0.5587","pitt.edu":"0.5581","frontiersin.org":"0.5539","realclearscience.com":"0.5516","researchgate.net":"0.5363","bigthink.com":"0.5338","cam.ac.uk":"0.5335","evanmiller.org":"0.5311","newatlas.com":"0.5275","lse.ac.uk":"0.5234","kottke.org":"0.5233","techtimes.com":"0.5232","illinois.edu":"0.5152","inverse.com":"0.5040","plos.org":"0.4980","popularmechanics.com":"0.4953","smithsonianmag.com":"0.4839","aeon.co":"0.4728","nationalgeographic.com":"0.4513","atlasobscura.com":"0.4439","petapixel.com":"0.4353","brainpickings.org":"0.4341","quillette.com":"0.4299","sciencedaily.com":"0.4210","neurosciencenews.com":"0.4007","stanford.edu":"0.3829","slatestarcodex.com":"0.3760","technologyreview.com":"0.3702","singularityhub.com":"0.3698","popsci.com":"0.3329","evonomics.com":"0.3269","openculture.com":"0.3076","ieee.org":"0.3062","collective-evolution.com":"0.3013","farnamstreetblog.com":"0.2988","medicalxpress.com":"0.2972","ted.com":"0.2836","hackaday.com":"0.2778","mentalfloss.com":"0.2728","theconversation.com":"0.2696","arstechnica.com":"0.2642","nymag.com":"0.2615","mit.edu":"0.2566","gizmodo.com":"0.2519","bbc.com":"0.2445","jamesclear.com":"0.2140","wired.co.uk":"0.2112","statnews.com":"0.2110","listverse.com":"0.2074","yahoo.com":"0.1969","nbcnews.com":"0.1895","nih.gov":"0.1861","wired.com":"0.1852","npr.org":"0.1630","telegraph.co.uk":"0.1507","paulgraham.com":"0.1350","qz.com":"0.1350","medicalnewstoday.com":"0.1347","ycombinator.com":"0.1271","bbc.co.uk":"0.1236","engadget.com":"0.1221","axios.com":"0.1215","newsweek.com":"0.1213","weforum.org":"0.1213","time.com":"0.1212","freecodecamp.org":"0.1176","propublica.org":"0.1169","thebaffler.com":"0.1128","thehindu.com":"0.1115","theguardian.com":"0.1103","boingboing.net":"0.1101","harvard.edu":"0.1091","vice.com":"0.1039","fivethirtyeight.com":"0.1004","independent.co.uk":"0.0994","lrb.co.uk":"0.0950","theatlantic.com":"0.0915","theverge.com":"0.0892","psychologytoday.com":"0.0860"},"item_score":0.88333333333333},{"id":53223,"url":"https:\/\/www.seriouseats.com\/2020\/01\/oat-milk-guide.html?utm_source=pocket-newtab","domain":"seriouseats.com","title":"Everything You Need to Know About Oat Milk","excerpt":"How oat milk is made, how to cook with it, and everything else you need to know.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580277600","engagement":"","parameter_set":"default","domain_affinities":{"101cookbooks.com":"1.0000","cooksillustrated.com":"1.0000","browneyedbaker.com":"1.0000","rasamalaysia.com":"1.0000","deliciousmagazine.co.uk":"1.0000","naturallyella.com":"1.0000","onceuponachef.com":"1.0000","natashaskitchen.com":"1.0000","closetcooking.com":"1.0000","lilluna.com":"1.0000","cookiesandcups.com":"1.0000","momontimeout.com":"1.0000","crazyforcrust.com":"1.0000","sallysbakingaddiction.com":"1.0000","iwashyoudry.com":"1.0000","chefsteps.com":"1.0000","spendwithpennies.com":"1.0000","cookingclassy.com":"1.0000","averiecooks.com":"1.0000","theslowroasteditalian.com":"1.0000","myincrediblerecipes.com":"1.0000","cafedelites.com":"1.0000","wellplated.com":"1.0000","dinnerthendessert.com":"1.0000","4u1s.com":"1.0000","pressurecookrecipes.com":"1.0000","yourfoodtube.com":"1.0000","smittenkitchen.com":"0.9995","chocolatecoveredkatie.com":"0.9995","simplyrecipes.com":"0.9994","myrecipes.com":"0.9992","budgetbytes.com":"0.9992","cooktopcove.com":"0.9992","veganricha.com":"0.9990","twopeasandtheirpod.com":"0.9989","foodnetwork.com":"0.9988","skinnytaste.com":"0.9988","recipetineats.com":"0.9988","halfbakedharvest.com":"0.9987","nomnompaleo.com":"0.9981","tastecooking.com":"0.9981","12tomatoes.com":"0.9977","minimalistbaker.com":"0.9970","americastestkitchen.com":"0.9968","kalynskitchen.com":"0.9963","chowhound.com":"0.9961","allrecipes.com":"0.9957","foodiecrush.com":"0.9953","seriouseats.com":"0.9952","gimmesomeoven.com":"0.9952","diethood.com":"0.9944","lecremedelacrumb.com":"0.9944","loveandlemons.com":"0.9943","thewoksoflife.com":"0.9940","chelseasmessyapron.com":"0.9938","thepioneerwoman.com":"0.9935","howsweeteats.com":"0.9932","jocooks.com":"0.9929","therecipecritic.com":"0.9929","epicurious.com":"0.9926","tablespoon.com":"0.9926","kingarthurflour.com":"0.9925","davidlebovitz.com":"0.9924","justonecookbook.com":"0.9922","ohmyveggies.com":"0.9918","lemontreedwelling.com":"0.9918","ohsheglows.com":"0.9910","ambitiouskitchen.com":"0.9910","food.com":"0.9905","tastemade.com":"0.9901","williams-sonoma.com":"0.9896","cookieandkate.com":"0.9886","carlsbadcravings.com":"0.9884","leitesculinaria.com":"0.9882","cookingchanneltv.com":"0.9881","jamieoliver.com":"0.9877","food52.com":"0.9866","damndelicious.net":"0.9855","firstwefeast.com":"0.9840","grubstreet.com":"0.9836","iamafoodblog.com":"0.9835","tasteofhome.com":"0.9820","thebigmansworld.com":"0.9814","splendidtable.org":"0.9811","thekitchn.com":"0.9803","luckypeach.com":"0.9797","joythebaker.com":"0.9793","saveur.com":"0.9782","pinchofyum.com":"0.9781","delish.com":"0.9775","bonappetit.com":"0.9774","goodfood.com.au":"0.9756","fitfoodiefinds.com":"0.9747","bettycrocker.com":"0.9705","pillsbury.com":"0.9655","lowcarbyum.com":"0.9647","foodrepublic.com":"0.9634","bunsinmyoven.com":"0.9633","marthastewart.com":"0.9624","bbcgoodfood.com":"0.9567","extracrispy.com":"0.9556","liquor.com":"0.9506","eatingwell.com":"0.9447","ibreatheimhungry.com":"0.9406","cookinglight.com":"0.9308","bhg.com":"0.9296","spoonuniversity.com":"0.9296","eater.com":"0.9281","tastingtable.com":"0.9246","foodandwine.com":"0.9219","onegreenplanet.org":"0.9111","vinepair.com":"0.8992","thespruce.com":"0.8857","motherearthnews.com":"0.8852","ketodietapp.com":"0.8698","forksoverknives.com":"0.8626","civileats.com":"0.8533","onegoodthingbyjillee.com":"0.8517","abeautifulmess.com":"0.8381","stephanguyenet.com":"0.8371","tiphero.com":"0.8245","ruled.me":"0.8068","tofugu.com":"0.7904","paleohacks.com":"0.7388","rodalesorganiclife.com":"0.7240","realsimple.com":"0.7151","purewow.com":"0.6726","thesweethome.com":"0.6558","eatthis.com":"0.6502","dietdoctor.com":"0.6424","wellnessmama.com":"0.5877","marksdailyapple.com":"0.5370","cheatsheet.com":"0.5359","naturallivingideas.com":"0.5283","treehugger.com":"0.5181","pinterest.com":"0.5092","vogue.com":"0.5063","authoritynutrition.com":"0.5062","roadsandkingdoms.com":"0.4833","timeout.com":"0.4621","gearpatrol.com":"0.4616","myfitnesspal.com":"0.4616","healthy-holistic-living.com":"0.4508","popsci.com":"0.4505","popsugar.com":"0.4499","wellandgood.com":"0.4366","today.com":"0.4361","nutritionfacts.org":"0.4198","bulletproof.com":"0.4134","greatist.com":"0.4012","draxe.com":"0.3948","realfarmacy.com":"0.3945","boredpanda.com":"0.3911","nationalgeographic.com":"0.3860","gothamist.com":"0.3776","theheartysoul.com":"0.3768","goop.com":"0.3631","instructables.com":"0.3627","apartmenttherapy.com":"0.3621","mindbodygreen.com":"0.3488","curejoy.com":"0.3282","mercola.com":"0.3188","mcsweeneys.net":"0.3153","self.com":"0.3141","health.com":"0.3095","healthline.com":"0.3077","chriskresser.com":"0.3015","thrillist.com":"0.3014","precisionnutrition.com":"0.2906","runtastic.com":"0.2805","prevention.com":"0.2742","wikihow.com":"0.2637","examine.com":"0.2625","livestrong.com":"0.2621","verywell.com":"0.2557","onnit.com":"0.2502","brightside.me":"0.2471","rd.com":"0.2329","bodybuilding.com":"0.2092","nerdfitness.com":"0.2032","webmd.com":"0.2003"},"item_score":0.86666666666667},{"id":53247,"url":"https:\/\/getpocket.com\/explore\/item\/a-tree-is-known-by-its-fruit?utm_source=pocket-newtab","domain":"texasmonthly.com","title":"A Tree Is Known By Its Fruit","excerpt":"When Bonnie Harkey, the 85-year-old matriarch of a prominent San Saba family, was brutally murdered in 2012, her death spelled the end of a legendary pecan dynasty. It also uncovered a dark tale of family, greed, and hate.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"tomcritchlow.com":"1.0000","startups.co":"1.0000","deekit.com":"1.0000","priceintelligently.com":"0.9868","appsterhq.com":"0.9847","oberlo.com":"0.9840","parse.ly":"0.9832","venturegeneratedcontent.com":"0.9811","christophjanz.blogspot.com":"0.9811","bigcommerce.com":"0.9787","saleshacker.com":"0.9781","sharetribe.com":"0.9753","marsdd.com":"0.9682","forentrepreneurs.com":"0.9682","profitwell.com":"0.9680","abetterlemonadestand.com":"0.9654","sixteenventures.com":"0.9651","fi.co":"0.9641","guykawasaki.com":"0.9636","bplans.com":"0.9605","capitalandgrowth.org":"0.9605","themacro.com":"0.9593","sba.gov":"0.9586","fxempire.com":"0.9575","greylock.com":"0.9216","nathanbarry.com":"0.9087","nickkolenda.com":"0.9045","reactionwheel.net":"0.8917","gaps.com":"0.8818","clearbit.com":"0.8589","sequoiacap.com":"0.8460","mattermark.com":"0.8454","tomtunguz.com":"0.8443","ducttapemarketing.com":"0.8388","abovethecrowd.com":"0.8379","poetsandquants.com":"0.8284","infusionsoft.com":"0.8273","smallbiztrends.com":"0.8227","500hats.com":"0.8218","saastr.com":"0.8192","leanstack.com":"0.8170","thinkgrowth.org":"0.8142","svpg.com":"0.8141","hotjar.com":"0.8127","ondeckdaily.com":"0.8064","baremetrics.com":"0.8061","jacquesmattheij.com":"0.7906","retaildive.com":"0.7904","steveblank.com":"0.7899","foundrmag.com":"0.7861","chicagobusiness.com":"0.7844","customerthink.com":"0.7812","business.com":"0.7802","25iq.com":"0.7792","alleywatch.com":"0.7792","close.io":"0.7614","samaltman.com":"0.7568","producthabits.com":"0.7492","growandconvert.com":"0.7468","strategyzer.com":"0.7444","shopify.com":"0.7332","lucidchart.com":"0.7324","mixpanel.com":"0.7296","gumroad.com":"0.7254","toprankblog.com":"0.7163","openviewpartners.com":"0.7134","groovehq.com":"0.7092","bain.com":"0.7007","fastforwardlabs.com":"0.6959","drift.com":"0.6910","conversionxl.com":"0.6883","businessnewsdaily.com":"0.6848","blackboxofpm.com":"0.6772","neilpatel.com":"0.6770","startupsventurecapital.com":"0.6769","inc42.com":"0.6730","mindtheproduct.com":"0.6724","500.co":"0.6723","copyhackers.com":"0.6710","techstars.com":"0.6704","doubleyourfreelancing.com":"0.6654","businessoffashion.com":"0.6522","caseyaccidental.com":"0.6463","businessesgrow.com":"0.6446","feld.com":"0.6412","indiehackers.com":"0.6412","bothsidesofthetable.com":"0.6327","later.com":"0.6316","youexec.com":"0.6271","angel.co":"0.6262","belitsoft.com":"0.6238","salesforce.com":"0.6225","factordaily.com":"0.6201","visualcapitalist.com":"0.6196","vccircle.com":"0.6157","designbetter.co":"0.6112","kk.org":"0.6081","helpscout.net":"0.6062","mckinsey.com":"0.6047","business2community.com":"0.6000","tech.co":"0.5934","marketo.com":"0.5912","asmartbear.com":"0.5895","practicalecommerce.com":"0.5854","pmarchive.com":"0.5818","jeffbullas.com":"0.5804","l2inc.com":"0.5795","growthlab.com":"0.5787","wix.com":"0.5764","hbs.edu":"0.5753","coelevate.com":"0.5646","enterprisersproject.com":"0.5566","goldmansachs.com":"0.5414","techinasia.com":"0.5413","stratechery.com":"0.5244","paulgraham.com":"0.5164","hubspot.com":"0.4771","kissmetrics.com":"0.4761","avc.com":"0.4633","entrepreneur.com":"0.4436","jamesclear.com":"0.4382","firstround.com":"0.4294","slideshare.net":"0.3982","a16z.com":"0.3875","strategy-business.com":"0.3803","signalvnoise.com":"0.3801","cbinsights.com":"0.3707","forbes.com":"0.3645","ycombinator.com":"0.3289","hbr.org":"0.3180","jamesaltucher.com":"0.3150","fortune.com":"0.2958","linkedin.com":"0.2888","coach.me":"0.2770","bloomberg.com":"0.2515","thecut.com":"0.2381","recode.net":"0.2121","cnbc.com":"0.2118","thenextweb.com":"0.2053","inc.com":"0.2013","techcrunch.com":"0.1988","fastcompany.com":"0.1949","dariusforoux.com":"0.1935","venturebeat.com":"0.1905","ted.com":"0.1855","themission.co":"0.1817","99u.com":"0.1813","tim.blog":"0.1797","mit.edu":"0.1778","farnamstreetblog.com":"0.1764","success.com":"0.1677","hackernoon.com":"0.1649","fastcodesign.com":"0.1355","investopedia.com":"0.1223"},"item_score":0.85},{"id":53251,"url":"https:\/\/getpocket.com\/explore\/item\/when-it-s-good-to-be-antisocial?utm_source=pocket-newtab","domain":"nautil.us","title":"When It\u2019s Good to Be Antisocial","excerpt":"Sometimes everybody wins when you go it alone.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"centauri-dreams.org":"1.0000","astronomy.com":"1.0000","symmetrymagazine.org":"1.0000","preposterousuniverse.com":"1.0000","home.cern":"1.0000","astrologyzone.com":"0.9968","universetoday.com":"0.9964","planetary.org":"0.9954","skyandtelescope.com":"0.9896","earthsky.org":"0.9872","hakaimagazine.com":"0.9868","aps.org":"0.9867","dailygalaxy.com":"0.9854","biologos.org":"0.9835","evolution-institute.org":"0.9826","physicsworld.com":"0.9802","noaa.gov":"0.9770","cafeastrology.com":"0.9766","thespacereview.com":"0.9743","lensrentals.com":"0.9731","xkcd.com":"0.9703","greatamericaneclipse.com":"0.9702","space.com":"0.9699","nasa.gov":"0.9695","caltech.edu":"0.9689","e27.co":"0.9657","evolutionnews.org":"0.9654","elifesciences.org":"0.9629","biorxiv.org":"0.9620","lonelyspeck.com":"0.9494","esa.int":"0.9486","retractionwatch.com":"0.9484","ias.edu":"0.9406","sspnet.org":"0.9375","jhu.edu":"0.9370","spacenews.com":"0.9362","stephenwolfram.com":"0.9345","climatecentral.org":"0.9322","eos.org":"0.9313","iai.tv":"0.9296","academia.edu":"0.9293","ancient-code.com":"0.9267","cosmosmagazine.com":"0.9241","semanticscholar.org":"0.9185","airspacemag.com":"0.9171","sciencefriday.com":"0.9159","eclipse2017.org":"0.9157","scottaaronson.com":"0.9122","pnas.org":"0.9111","quantamagazine.org":"0.9068","osf.io":"0.9063","fermatslibrary.com":"0.9033","timeanddate.com":"0.8986","23andme.com":"0.8821","sciencenews.org":"0.8707","phys.org":"0.8692","js.org":"0.8518","carbonbrief.org":"0.8461","iop.org":"0.8390","apnic.net":"0.7945","pionic.org":"0.7581","nature.com":"0.7393","futurism.com":"0.7353","chemistryworld.com":"0.7343","trendintech.com":"0.7256","discovermagazine.com":"0.7246","tandfonline.com":"0.7170","nautil.us":"0.7139","kurzweilai.net":"0.7068","sciencealert.com":"0.7040","ucsc.edu":"0.7022","seeker.com":"0.6867","livescience.com":"0.6848","sciencemag.org":"0.6813","brown.edu":"0.6728","elsevier.com":"0.6644","edge.org":"0.6598","arxiv.org":"0.6514","secondnexus.com":"0.6479","radiolab.org":"0.6464","waitbutwhy.com":"0.6457","mindhacks.com":"0.6451","curiosity.com":"0.6430","nuclearsecrecy.com":"0.6426","andrewgelman.com":"0.6358","newscientist.com":"0.6341","si.edu":"0.6281","techxplore.com":"0.6257","lesswrong.com":"0.6201","scientificamerican.com":"0.6175","energy.gov":"0.6154","philosophynow.org":"0.6116","iflscience.com":"0.5847","lastwordonnothing.com":"0.5763","kaggle.com":"0.5738","undark.org":"0.5732","nextbigfuture.com":"0.5708","fastforwardlabs.com":"0.5705","3quarksdaily.com":"0.5656","heterodoxacademy.org":"0.5587","pitt.edu":"0.5581","frontiersin.org":"0.5539","realclearscience.com":"0.5516","researchgate.net":"0.5363","bigthink.com":"0.5338","cam.ac.uk":"0.5335","evanmiller.org":"0.5311","newatlas.com":"0.5275","lse.ac.uk":"0.5234","kottke.org":"0.5233","techtimes.com":"0.5232","illinois.edu":"0.5152","inverse.com":"0.5040","plos.org":"0.4980","popularmechanics.com":"0.4953","smithsonianmag.com":"0.4839","aeon.co":"0.4728","nationalgeographic.com":"0.4513","atlasobscura.com":"0.4439","petapixel.com":"0.4353","brainpickings.org":"0.4341","quillette.com":"0.4299","sciencedaily.com":"0.4210","neurosciencenews.com":"0.4007","stanford.edu":"0.3829","slatestarcodex.com":"0.3760","technologyreview.com":"0.3702","singularityhub.com":"0.3698","popsci.com":"0.3329","evonomics.com":"0.3269","openculture.com":"0.3076","ieee.org":"0.3062","collective-evolution.com":"0.3013","farnamstreetblog.com":"0.2988","medicalxpress.com":"0.2972","ted.com":"0.2836","hackaday.com":"0.2778","mentalfloss.com":"0.2728","theconversation.com":"0.2696","arstechnica.com":"0.2642","nymag.com":"0.2615","mit.edu":"0.2566","gizmodo.com":"0.2519","bbc.com":"0.2445","jamesclear.com":"0.2140","wired.co.uk":"0.2112","statnews.com":"0.2110","listverse.com":"0.2074","yahoo.com":"0.1969","nbcnews.com":"0.1895","nih.gov":"0.1861","wired.com":"0.1852","npr.org":"0.1630","telegraph.co.uk":"0.1507","paulgraham.com":"0.1350","qz.com":"0.1350","medicalnewstoday.com":"0.1347","ycombinator.com":"0.1271","bbc.co.uk":"0.1236","engadget.com":"0.1221","axios.com":"0.1215","newsweek.com":"0.1213","weforum.org":"0.1213","time.com":"0.1212","freecodecamp.org":"0.1176","propublica.org":"0.1169","thebaffler.com":"0.1128","thehindu.com":"0.1115","theguardian.com":"0.1103","boingboing.net":"0.1101","harvard.edu":"0.1091","vice.com":"0.1039","fivethirtyeight.com":"0.1004","independent.co.uk":"0.0994","lrb.co.uk":"0.0950","theatlantic.com":"0.0915","theverge.com":"0.0892","psychologytoday.com":"0.0860"},"item_score":0.83333333333333},{"id":53164,"url":"https:\/\/www.nytimes.com\/2020\/01\/31\/sunday-review\/alcohol-drinking-problem.html?utm_source=pocket-newtab","domain":"nytimes.com","title":"What Does It Mean to Have a Serious Drinking Problem?","excerpt":"Alcohol was my stress reducer, my reality fighter, the conferrer of artificial joys. It was also wreaking havoc on my life.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580473308","engagement":"","parameter_set":"default","domain_affinities":{"knowridge.com":"1.0000","dailymedic.info":"0.9998","pharmaceutical-journal.com":"0.9997","startingstrength.com":"0.9992","selfhacked.com":"0.9986","physiqonomics.com":"0.9984","stronglifts.com":"0.9958","examine.com":"0.9948","dailyplug.com":"0.9939","stedavies.com":"0.9937","bengreenfieldfitness.com":"0.9916","muscleandfitness.com":"0.9912","muscleandstrength.com":"0.9912","t-nation.com":"0.9896","precisionnutrition.com":"0.9873","drugs.com":"0.9865","muscleforlife.com":"0.9857","thehealthawareness.com":"0.9834","medicalnewstoday.com":"0.9831","womansworld.com":"0.9821","eatingacademy.com":"0.9813","mayoclinic.org":"0.9810","hopkinsmedicine.org":"0.9806","clevelandclinic.org":"0.9796","thehealthcareblog.com":"0.9790","chriskresser.com":"0.9782","jamanetwork.com":"0.9782","top10homeremedies.com":"0.9773","greenmedinfo.com":"0.9771","intensivedietarymanagement.com":"0.9770","healthline.com":"0.9737","onnit.com":"0.9730","annals.org":"0.9729","active.com":"0.9722","sciencebasedmedicine.org":"0.9709","bodybuilding.com":"0.9707","medicinenet.com":"0.9705","helpguide.org":"0.9701","fda.gov":"0.9692","competitor.com":"0.9668","webmd.com":"0.9654","lww.com":"0.9653","proteinpower.com":"0.9643","robbwolf.com":"0.9641","draxe.com":"0.9632","bulletproof.com":"0.9628","runtastic.com":"0.9605","mercola.com":"0.9599","drweil.com":"0.9588","medicaldaily.com":"0.9582","studyfinds.org":"0.9576","endpts.com":"0.9570","nutritionfacts.org":"0.9555","menshealth.co.uk":"0.9553","stack.com":"0.9546","livestrong.com":"0.9541","mensfitness.com":"0.9540","kajsotala.fi":"0.9537","drhyman.com":"0.9530","women2.com":"0.9523","authoritynutrition.com":"0.9517","curejoy.com":"0.9513","womenshealthmag.com":"0.9510","news-medical.net":"0.9499","nutrition.org":"0.9498","medicalxpress.com":"0.9482","ewg.org":"0.9470","fitnessmagazine.com":"0.9462","menshealth.com":"0.9458","nerdfitness.com":"0.9452","medcitynews.com":"0.9450","health.com":"0.9445","breakingmuscle.com":"0.9426","shape.com":"0.9420","vegan.com":"0.9419","prevention.com":"0.9415","yogajournal.com":"0.9409","everydayhealth.com":"0.9406","runnersworld.com":"0.9401","kevinmd.com":"0.9393","neurosciencenews.com":"0.9387","who.int":"0.9382","ucsf.edu":"0.9371","medpagetoday.com":"0.9352","mosaicscience.com":"0.9341","nejm.org":"0.9323","nhs.uk":"0.9317","eatthis.com":"0.9273","naturallivingideas.com":"0.9265","bmj.com":"0.9264","themighty.com":"0.9260","fitbit.com":"0.9253","marksdailyapple.com":"0.9247","cdc.gov":"0.9245","healthy-holistic-living.com":"0.9232","theheartysoul.com":"0.9226","byrdie.co.uk":"0.9208","intothegloss.com":"0.9199","realfarmacy.com":"0.9140","biomedcentral.com":"0.9132","nih.gov":"0.9125","netdoctor.co.uk":"0.9125","byrdie.com":"0.9118","dailyburn.com":"0.8980","sustainabledish.com":"0.8962","acsh.org":"0.8945","verywell.com":"0.8935","myfitnesspal.com":"0.8853","wellnessmama.com":"0.8823","housebeautiful.co.uk":"0.8816","experiencelife.com":"0.8807","statnews.com":"0.8786","mindful.org":"0.8776","stephanguyenet.com":"0.8762","rodalewellness.com":"0.8758","self.com":"0.8732","theopennotebook.com":"0.8709","bicycling.com":"0.8480","askmen.com":"0.8435","wakeup-world.com":"0.8418","mindbodygreen.com":"0.8410","naturalnews.com":"0.8366","spring.org.uk":"0.8360","dietdoctor.com":"0.8316","wellandgood.com":"0.8313","sciencedaily.com":"0.8229","powerofpositivity.com":"0.8154","greatist.com":"0.8002","upliftconnect.com":"0.7975","rd.com":"0.7928","psychcentral.com":"0.7840","headspace.com":"0.7803","lionsroar.com":"0.7743","ruled.me":"0.7738","collective-evolution.com":"0.7608","ketodietapp.com":"0.7397","additudemag.com":"0.7362","psychologytoday.com":"0.7293","elephantjournal.com":"0.7292","eurekalert.org":"0.7203","rodalesorganiclife.com":"0.7141","futurity.org":"0.7140","popsugar.com":"0.7038","bps.org.uk":"0.6940","brightside.me":"0.6893","plos.org":"0.6695","aarp.org":"0.6670","ideapod.com":"0.6645","goop.com":"0.6381","bigthink.com":"0.6256","mensjournal.com":"0.6255","metro.co.uk":"0.6195","wareable.com":"0.6038","popsci.com":"0.5852","telegraph.co.uk":"0.5784","elitedaily.com":"0.5782","fatherly.com":"0.5727","theeverygirl.com":"0.5662","theladders.com":"0.5595","melmagazine.com":"0.5585","wikihow.com":"0.5559","consumerreports.org":"0.5530","theconversation.com":"0.5453","sciencealert.com":"0.5440","cosmopolitan.com":"0.5406","desiringgod.org":"0.5329","scientificamerican.com":"0.5307","today.com":"0.5302","artofmanliness.com":"0.5212","thesweethome.com":"0.5088","bakadesuyo.com":"0.5075","sciencenews.org":"0.5065","newscientist.com":"0.4991","pickthebrain.com":"0.4922","discovermagazine.com":"0.4915","newatlas.com":"0.4880","forksoverknives.com":"0.4868","iflscience.com":"0.4857","tinybuddha.com":"0.4831","zenhabits.net":"0.4791","qz.com":"0.4662","cheatsheet.com":"0.4635","iwillteachyoutoberich.com":"0.4628","time.com":"0.4519","npr.org":"0.4503","refinery29.com":"0.4498","ted.com":"0.4497","wired.co.uk":"0.4445","coach.me":"0.4216","livescience.com":"0.4073","bustle.com":"0.3934","outsideonline.com":"0.3920","thecut.com":"0.3897","slatestarcodex.com":"0.3864","weforum.org":"0.3862","brainpickings.org":"0.3845","raptitude.com":"0.3843","realsimple.com":"0.3808","onegreenplanet.org":"0.3804","nautil.us":"0.3776","dailymail.co.uk":"0.3707","cookinglight.com":"0.3698","nature.com":"0.3686","1843magazine.com":"0.3581","highexistence.com":"0.3526","markmanson.net":"0.3453","marcandangel.com":"0.3381","lifehack.org":"0.3288","msn.com":"0.3280","bestlifeonline.com":"0.3244","propublica.org":"0.3234","theestablishment.co":"0.3116","thoughtcatalog.com":"0.3016","dariusforoux.com":"0.2946","bbcgoodfood.com":"0.2930","racked.com":"0.2921","success.com":"0.2768","eater.com":"0.2654"},"item_score":0.81666666666667},{"id":53249,"url":"https:\/\/getpocket.com\/explore\/item\/code-girls-the-untold-story-of-the-women-cryptographers-who-fought-wwii-at-the-intersection-of?utm_source=pocket-newtab","domain":"brainpickings.org","title":"Code Girls: The Women Cryptographers of WWII","excerpt":"While Alan Turing was decrypting Nazi communication across the Atlantic, some eleven thousand women were breaking enemy code in America.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"stoodnt.com":"1.0000","checkio.org":"1.0000","allisonharbin.com":"1.0000","educationdive.com":"0.9692","eschoolnews.com":"0.9520","hechingerreport.org":"0.9432","edtechmagazine.com":"0.9340","the74million.org":"0.9307","edsurge.com":"0.9257","gettingsmart.com":"0.9254","chalkbeat.org":"0.9209","educationnext.org":"0.9173","fredrikdeboer.com":"0.9139","hackeducation.com":"0.9112","ascd.org":"0.8990","elearningindustry.com":"0.8895","edweek.org":"0.8823","edutopia.org":"0.8791","cultofpedagogy.com":"0.8759","class-central.com":"0.8738","teachthought.com":"0.8624","educause.edu":"0.8593","vanderbilt.edu":"0.8500","dataschool.io":"0.8500","edx.org":"0.8455","coursera.org":"0.8178","tes.com":"0.8157","educatorstechnology.com":"0.8092","timeshighereducation.com":"0.7976","weareteachers.com":"0.7968","lynda.com":"0.7925","datacamp.com":"0.7732","chroniclevitae.com":"0.7689","codecademy.com":"0.7598","insidehighered.com":"0.7439","kqed.org":"0.7268","udemy.com":"0.6803","ed.gov":"0.6640","skillshare.com":"0.6625","edublogs.org":"0.6553","airsassociation.org":"0.6521","freetech4teachers.com":"0.6503","osf.io":"0.6486","haschek.at":"0.6357","purdue.edu":"0.6162","futurelearn.com":"0.6052","brown.edu":"0.5968","chronicle.com":"0.5899","khanacademy.org":"0.5785","udacity.com":"0.5508","sagepub.com":"0.5357","campusreform.org":"0.5332","recurse.com":"0.5327","gatech.edu":"0.5320","mindhacks.com":"0.5283","unc.edu":"0.5260","neu.edu":"0.5222","thesmartset.com":"0.5097","ocregister.com":"0.4958","umich.edu":"0.4953","fluentu.com":"0.4911","princeton.edu":"0.4885","usc.edu":"0.4808","packtpub.com":"0.4778","ideo.com":"0.4769","mystudentvoices.com":"0.4700","cuny.edu":"0.4679","ubc.ca":"0.4665","singularityhub.com":"0.4148","parent.co":"0.4008","introvertdear.com":"0.3880","ucsd.edu":"0.3811","pdx.edu":"0.3810","thecollegefix.com":"0.3688","indiana.edu":"0.3610","freecodecamp.org":"0.3434","themarshallproject.org":"0.3379","mit.edu":"0.3164","collegeinfogeek.com":"0.3105","stanford.edu":"0.2129","80000hours.org":"0.1789","ted.com":"0.1666","calnewport.com":"0.1527","nature.com":"0.1497","openculture.com":"0.1409","farnamstreetblog.com":"0.1389","harvard.edu":"0.1329","weforum.org":"0.1292","thebaffler.com":"0.0937"},"item_score":0.8},{"id":53208,"url":"https:\/\/www.theatlantic.com\/ideas\/archive\/2020\/01\/the-truth-about-the-california-exodus\/605833\/?utm_source=pocket-newtab","domain":"theatlantic.com","title":"Why Texans Don\u2019t Want Any More Californians","excerpt":"Across a frightened nation divided by politics and culture, a fragile harmony is ascendant, as Americans in small towns and large cities alike cry out in trembling unison: Hey, where did all these Californians come from?","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580468400","engagement":"","parameter_set":"default","domain_affinities":{"38north.org":"1.0000","politicalwire.com":"1.0000","rightwingwatch.org":"1.0000","tomdispatch.com":"1.0000","judicialwatch.org":"1.0000","pressthink.org":"1.0000","edri.org":"1.0000","dailyprogress.com":"1.0000","lobelog.com":"1.0000","brennancenter.org":"1.0000","electionlawblog.org":"1.0000","kstp.com":"1.0000","cwmemory.com":"1.0000","secularhumanism.org":"1.0000","ericposner.com":"1.0000","politicalresearch.org":"1.0000","occupydemocrats.com":"1.0000","afghanistan-analysts.org":"1.0000","atlanticcouncil.org":"1.0000","imperialglobalexeter.com":"1.0000","theamericanmirror.com":"1.0000","thenib.com":"1.0000","ir.net":"1.0000","shareblue.com":"1.0000","takecareblog.com":"1.0000","voterstudygroup.org":"1.0000","palmerreport.com":"0.9998","meforum.org":"0.9997","reverepress.com":"0.9994","politicususa.com":"0.9992","washingtonjournal.com":"0.9992","consortiumnews.com":"0.9990","scotusblog.com":"0.9986","people-press.org":"0.9968","mediaite.com":"0.9959","rollcall.com":"0.9959","gatestoneinstitute.org":"0.9959","amgreatness.com":"0.9959","msnbc.com":"0.9954","middleeasteye.net":"0.9953","middleeastmonitor.com":"0.9946","justsecurity.org":"0.9946","emptywheel.net":"0.9942","extranewsfeed.com":"0.9940","conservativereview.com":"0.9935","splcenter.org":"0.9934","ecfr.eu":"0.9934","lawfareblog.com":"0.9930","frontpagemag.com":"0.9929","israelnationalnews.com":"0.9907","libertarianism.org":"0.9907","bluedotdaily.com":"0.9907","mcclatchydc.com":"0.9905","claremont.org":"0.9902","al-monitor.com":"0.9896","politics.co.uk":"0.9893","mediamatters.org":"0.9888","monthlyreview.org":"0.9887","democracynow.org":"0.9881","socialistworker.org":"0.9880","thehill.com":"0.9872","sojo.net":"0.9872","thegatewaypundit.com":"0.9872","lawnewz.com":"0.9870","prospect.org":"0.9866","nationalinterest.org":"0.9865","c-span.org":"0.9862","newsocialist.org.uk":"0.9854","politifact.com":"0.9853","billmoyers.com":"0.9847","heritage.org":"0.9842","defensenews.com":"0.9835","factcheck.org":"0.9832","pewforum.org":"0.9831","foreignpolicy.com":"0.9828","algemeiner.com":"0.9818","democracyjournal.org":"0.9808","westernjournalism.com":"0.9806","realclearpolitics.com":"0.9794","warisboring.com":"0.9788","stripes.com":"0.9786","whitehouse.gov":"0.9781","rawstory.com":"0.9778","warontherocks.com":"0.9778","wonkette.com":"0.9774","electronicintifada.net":"0.9766","politico.eu":"0.9766","dailykos.com":"0.9765","washingtontimes.com":"0.9765","thinkprogress.org":"0.9747","realcleardefense.com":"0.9740","washingtonexaminer.com":"0.9739","circa.com":"0.9730","commentarymagazine.com":"0.9717","hotair.com":"0.9710","townhall.com":"0.9709","cfr.org":"0.9704","dissentmagazine.org":"0.9702","currentaffairs.org":"0.9683","counterpunch.org":"0.9681","spectator.org":"0.9663","defenseone.com":"0.9657","commondreams.org":"0.9640","theamericanconservative.com":"0.9623","inthesetimes.com":"0.9616","jpost.com":"0.9614","att.net":"0.9609","washingtonmonthly.com":"0.9608","opendemocracy.net":"0.9591","dailycaller.com":"0.9569","forward.com":"0.9564","dailysignal.com":"0.9557","jacobinmag.com":"0.9551","cjr.org":"0.9516","theintercept.com":"0.9511","politico.com":"0.9498","foreignaffairs.com":"0.9497","aljazeera.com":"0.9495","nationalreview.com":"0.9493","truth-out.org":"0.9492","thediplomat.com":"0.9404","thenation.com":"0.9396","ap.org":"0.9369","apnews.com":"0.9347","theroot.com":"0.9343","truthdig.com":"0.9343","timesofisrael.com":"0.9304","pjmedia.com":"0.9296","haaretz.com":"0.9223","versobooks.com":"0.9167","evonomics.com":"0.9155","alternet.org":"0.9150","newrepublic.com":"0.9132","city-journal.org":"0.9126","takimag.com":"0.9080","axios.com":"0.9080","brookings.edu":"0.9054","motherjones.com":"0.9039","thefederalist.com":"0.9031","theblaze.com":"0.9026","tabletmag.com":"0.8970","pewresearch.org":"0.8970","talkingpointsmemo.com":"0.8949","splinternews.com":"0.8868","dw.com":"0.8827","thestranger.com":"0.8820","project-syndicate.org":"0.8763","rt.com":"0.8700","thedailybeast.com":"0.8668","bostonreview.net":"0.8619","salon.com":"0.8580","foxnews.com":"0.8576","weeklystandard.com":"0.8571","snopes.com":"0.8525","washingtonpost.com":"0.8517","nationalpost.com":"0.8513","nybooks.com":"0.8402","newstatesman.com":"0.8373","thestar.com":"0.8341","grist.org":"0.8319","thebaffler.com":"0.8310","everydayfeminism.com":"0.8296","firstthings.com":"0.8230","autostraddle.com":"0.8209","poynter.org":"0.8205","newsweek.com":"0.8190","fee.org":"0.8160","quillette.com":"0.8154","reason.com":"0.8146","nplusonemag.com":"0.8087","harpers.org":"0.8018","theweek.com":"0.8013","nakedcapitalism.com":"0.7991","ft.com":"0.7970","reuters.com":"0.7936","propublica.org":"0.7902","nydailynews.com":"0.7888","niemanlab.org":"0.7863","vox.com":"0.7858","patheos.com":"0.7851","christianitytoday.com":"0.7840","allure.com":"0.7840","miamiherald.com":"0.7801","thenewinquiry.com":"0.7799","teenvogue.com":"0.7777","lareviewofbooks.org":"0.7766","psmag.com":"0.7748","slate.com":"0.7742","artsy.net":"0.7612","cnn.com":"0.7601","theestablishment.co":"0.7516","zerohedge.com":"0.7467","lithub.com":"0.7426","thetimes.co.uk":"0.7371","thegospelcoalition.org":"0.7325","thehindu.com":"0.7306","msn.com":"0.7299","texasmonthly.com":"0.7204","nbcnews.com":"0.7160","newyorker.com":"0.7141","citylab.com":"0.7140","cbsnews.com":"0.7125","vanityfair.com":"0.7090","theatlantic.com":"0.7056","esquire.com":"0.7032","theglobeandmail.com":"0.6974","fivethirtyeight.com":"0.6967","thewalrus.ca":"0.6966","economist.com":"0.6938","bostonglobe.com":"0.6925","nymag.com":"0.6894","chronicle.com":"0.6611","nytimes.com":"0.6579","latimes.com":"0.6558","slatestarcodex.com":"0.6534","cbc.ca":"0.6505","jezebel.com":"0.6485","chicagotribune.com":"0.6449","philly.com":"0.6438","pbs.org":"0.6418","sfchronicle.com":"0.6397","independent.co.uk":"0.6383","huffingtonpost.com":"0.6380","irishtimes.com":"0.6349","usatoday.com":"0.6307","seattletimes.com":"0.6300","longreads.com":"0.6255","theguardian.com":"0.6241","buzzfeed.com":"0.6239","ozy.com":"0.6223","gq.com":"0.6128","ribbonfarm.com":"0.6092","theonion.com":"0.6055","ndtv.com":"0.5997","jstor.org":"0.5997","mic.com":"0.5975","nypost.com":"0.5934","wsj.com":"0.5920","observer.com":"0.5878","boingboing.net":"0.5872","rollingstone.com":"0.5867","bbc.co.uk":"0.5831","1843magazine.com":"0.5799","theparisreview.org":"0.5737","theoutline.com":"0.5721","livemint.com":"0.5712","digiday.com":"0.5711","bustle.com":"0.5689","scroll.in":"0.5641","smithsonianmag.com":"0.5640","straitstimes.com":"0.5629","aeon.co":"0.5501","indiatimes.com":"0.5436","thecut.com":"0.5412","time.com":"0.5405","elle.com":"0.5392","dailymail.co.uk":"0.5358","eff.org":"0.5291","npr.org":"0.5254","vice.com":"0.5211","bloomberg.com":"0.5205","sfgate.com":"0.5201","digg.com":"0.5118","vogue.com":"0.5071","waitbutwhy.com":"0.4940","theundefeated.com":"0.4910","pastemagazine.com":"0.4870","mcsweeneys.net":"0.4864","bbc.com":"0.4808","popularmechanics.com":"0.4662","jalopnik.com":"0.4498","theconversation.com":"0.4458","paulgraham.com":"0.4394","markmanson.net":"0.4186","recode.net":"0.4029","michaelhyatt.com":"0.3894"},"item_score":0.78333333333333},{"id":53169,"url":"https:\/\/getpocket.com\/explore\/item\/the-way-we-work-is-killing-us?utm_source=pocket-newtab","domain":"slate.com","title":"The Way We Work Is Killing Us","excerpt":"An interview with the author of 'Dying for a Paycheck'.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"jeanhsu.com":"1.0000","uptowork.com":"1.0000","daftcode.pl":"1.0000","theinterviewguys.com":"1.0000","herbertograca.com":"1.0000","biginterview.com":"0.9990","job-hunt.org":"0.9978","interviewcake.com":"0.9894","triplebyte.com":"0.9800","livecareer.com":"0.9798","careynieuwhof.com":"0.9781","resumegenius.com":"0.9718","leadershipfreak.blog":"0.9707","flexjobs.com":"0.9669","topresume.com":"0.9634","theundercoverrecruiter.com":"0.9622","idealistcareers.org":"0.9594","cebglobal.com":"0.9545","itsyourturnblog.com":"0.9502","larahogan.me":"0.9489","hired.com":"0.9485","kornferry.com":"0.9484","mfbt.ca":"0.9467","getlighthouse.com":"0.9442","eremedia.com":"0.9370","monster.com":"0.9353","officevibe.com":"0.9243","askamanager.org":"0.9242","hbrascend.in":"0.9201","skillcrush.com":"0.9179","vault.com":"0.9157","slack.engineering":"0.9116","16personalities.com":"0.9088","glassdoor.com":"0.9038","behance.net":"0.8957","kitchensoap.com":"0.8656","sachinrekhi.com":"0.8425","ocks.org":"0.8167","codewithoutrules.com":"0.8041","firstround.com":"0.8006","edbatista.com":"0.7979","payscale.com":"0.7848","effectiveengineer.com":"0.7655","workable.com":"0.7219","barryoreilly.com":"0.7210","randsinrepose.com":"0.6805","hbr.org":"0.6744","upwork.com":"0.6740","themuse.com":"0.6706","insead.edu":"0.6585","shrm.org":"0.6543","lever.co":"0.6531","smartbrief.com":"0.6487","80000hours.org":"0.6422","stackoverflow.blog":"0.6296","brianknapp.me":"0.6109","kaggle.com":"0.6053","thecooperreview.com":"0.5980","indeed.com":"0.5854","productcoalition.com":"0.5804","strategy-business.com":"0.5789","safaribooksonline.com":"0.5755","dice.com":"0.5749","youexec.com":"0.5739","composition.al":"0.5736","angel.co":"0.5704","aha.io":"0.5646","udacity.com":"0.5625","theladders.com":"0.5586","zachholman.com":"0.5439","lihaoyi.com":"0.5412","thebalance.com":"0.5321","enterprisersproject.com":"0.5266","a16z.com":"0.5230","weforum.org":"0.5118","mindtools.com":"0.5060","alistapart.com":"0.4993","inc-asean.com":"0.4897","generalassemb.ly":"0.4840","confluent.io":"0.4778","mckinsey.com":"0.4737","researchgate.net":"0.4500","levo.com":"0.4484","linkedin.com":"0.4431","deloitte.com":"0.4385","codecademy.com":"0.4342","fastcompany.com":"0.4174","dev.to":"0.4137","nextscientist.com":"0.4117","ideou.com":"0.4029","penelopetrunk.com":"0.3962","buffer.com":"0.3923","egghead.io":"0.3797","boomerangapp.com":"0.3787","dribbble.com":"0.3743","svpg.com":"0.3724","departmentofproduct.com":"0.3654","skillshare.com":"0.3555","bcg.com":"0.3524","quip.com":"0.3457","forbes.com":"0.3332","designbetter.co":"0.3236","hubspot.com":"0.3190","bestlifeonline.com":"0.3109","theatlas.com":"0.2946","sneakerheadvc.com":"0.2870","inc.com":"0.2766","markmanson.net":"0.2766","99u.com":"0.2625","ted.com":"0.2606","businessinsider.com":"0.1846","signalvnoise.com":"0.1831","farnamstreetblog.com":"0.1825","qz.com":"0.1820","1843magazine.com":"0.1747","zapier.com":"0.1743","jamesclear.com":"0.1680","yahoo.com":"0.1516","evernote.com":"0.1480","fastcodesign.com":"0.1414","ycombinator.com":"0.1388","thecut.com":"0.1386","msn.com":"0.1370","freecodecamp.org":"0.1367","lifehacker.com":"0.1287","lifehack.org":"0.1229","entrepreneur.com":"0.1169","trello.com":"0.1138","aeon.co":"0.1040","bakadesuyo.com":"0.0854","scientificamerican.com":"0.0821","cnbc.com":"0.0770","medium.com":"0.0757","artofmanliness.com":"0.0745","techcrunch.com":"0.0742","huffingtonpost.com":"0.0633"},"item_score":0.76666666666667},{"id":53216,"url":"https:\/\/www.thecut.com\/2020\/02\/why-is-jeanine-cumminss-american-dirt-a-thriller.html?utm_source=pocket-newtab","domain":"thecut.com","title":"There\u2019s Nothing Thrilling About Trauma","excerpt":"\"'American Dirt' makes a romantic thriller out of a migration story, but I never could have done the same with mine.\"","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580842542","engagement":"","parameter_set":"default","domain_affinities":{"newalbumreleases.net":"1.0000","comicbookmovie.com":"1.0000","drownedinsound.com":"1.0000","thefilmstage.com":"1.0000","winteriscoming.net":"1.0000","udiscovermusic.com":"1.0000","teamrock.com":"1.0000","cinephiliabeyond.org":"0.9989","cashmusic.org":"0.9977","guitarworld.com":"0.9969","comingsoon.net":"0.9943","tasteofcinema.com":"0.9924","djbooth.net":"0.9921","musicbusinessworldwide.com":"0.9916","thevinylfactory.com":"0.9905","theplaylist.net":"0.9901","reverb.com":"0.9895","talkhouse.com":"0.9891","ultimateclassicrock.com":"0.9888","crackmagazine.net":"0.9884","screencrush.com":"0.9884","pigeonsandplanes.com":"0.9871","redbullmusicacademy.com":"0.9864","musicradar.com":"0.9859","discogs.com":"0.9858","interviewmagazine.com":"0.9855","moviefone.com":"0.9854","xxlmag.com":"0.9853","xiph.org":"0.9853","pitchfork.com":"0.9851","ask.audio":"0.9846","lwlies.com":"0.9842","screenrant.com":"0.9841","cbr.com":"0.9831","stereogum.com":"0.9824","soundonsound.com":"0.9821","premierguitar.com":"0.9818","factmag.com":"0.9815","rottentomatoes.com":"0.9812","bloody-disgusting.com":"0.9795","bfi.org.uk":"0.9785","spin.com":"0.9784","ableton.com":"0.9776","filmschoolrejects.com":"0.9767","indiewire.com":"0.9766","loudwire.com":"0.9763","cinemablend.com":"0.9738","criterion.com":"0.9736","moviepilot.com":"0.9720","slashfilm.com":"0.9717","brooklynvegan.com":"0.9701","welcometotwinpeaks.com":"0.9698","bandcamp.com":"0.9695","letterboxd.com":"0.9675","denofgeek.com":"0.9666","thequietus.com":"0.9650","newsarama.com":"0.9634","empireonline.com":"0.9631","mubi.com":"0.9630","comicbook.com":"0.9617","collider.com":"0.9611","consequenceofsound.net":"0.9607","filmcomment.com":"0.9592","digitalspy.com":"0.9587","geektyrant.com":"0.9523","brightwalldarkroom.com":"0.9507","ultimate-guitar.com":"0.9504","starwars.com":"0.9500","residentadvisor.net":"0.9484","digitalmusicnews.com":"0.9472","billboard.com":"0.9434","mixmag.net":"0.9421","hypebot.com":"0.9404","cdm.link":"0.9344","looper.com":"0.9322","movieweb.com":"0.9309","birthmoviesdeath.com":"0.9286","slantmagazine.com":"0.9284","thelineofbestfit.com":"0.9273","rogerebert.com":"0.9248","westeros.org":"0.9208","nerdist.com":"0.9170","nofilmschool.com":"0.9167","nme.com":"0.9149","popmatters.com":"0.9139","screendaily.com":"0.9062","uproxx.com":"0.9054","comicsbeat.com":"0.9049","tvline.com":"0.9029","ew.com":"0.9021","massappeal.com":"0.8970","bleedingcool.com":"0.8933","metacritic.com":"0.8929","flickeringmyth.com":"0.8929","blcklst.com":"0.8895","vulture.com":"0.8824","wmagazine.com":"0.8794","mixcloud.com":"0.8778","decider.com":"0.8741","tvguide.com":"0.8734","hollywoodreporter.com":"0.8730","premiumbeat.com":"0.8705","shortlist.com":"0.8660","okayplayer.com":"0.8652","etonline.com":"0.8642","genius.com":"0.8559","filmmakermagazine.com":"0.8504","whatculture.com":"0.8435","variety.com":"0.8371","avclub.com":"0.8295","thewrap.com":"0.8256","complex.com":"0.8251","spotify.com":"0.8211","hollywoodlife.com":"0.8163","deadline.com":"0.8157","netflix.com":"0.8060","justjared.com":"0.8002","playbill.com":"0.7964","eonline.com":"0.7959","artforum.com":"0.7956","thefader.com":"0.7916","dorkly.com":"0.7893","dangerousminds.net":"0.7860","imdb.com":"0.7807","soundcloud.com":"0.7390","dazeddigital.com":"0.7364","tor.com":"0.7086","glamour.com":"0.7076","syfy.com":"0.6875","ign.com":"0.6638","villagevoice.com":"0.6562","wikia.com":"0.6387","archiveofourown.org":"0.6365","pastemagazine.com":"0.6269","youtube.com":"0.6245","livejournal.com":"0.6182","vimeo.com":"0.6179","indiegogo.com":"0.6148","cracked.com":"0.6124","rollingstone.com":"0.6058","themarysue.com":"0.5897","openculture.com":"0.5567","highsnobiety.com":"0.5444","laweekly.com":"0.5333","imgur.com":"0.5240","mentalfloss.com":"0.4765","gizmodo.com":"0.4624","kottke.org":"0.4555","elle.com":"0.4470","thrillist.com":"0.4312","grantland.com":"0.4119","theparisreview.org":"0.4016","boredpanda.com":"0.3916","gq.com":"0.3831","gothamist.com":"0.3820","theringer.com":"0.3797","jezebel.com":"0.3583","sfchronicle.com":"0.3575","yahoo.com":"0.3412","vanityfair.com":"0.3264","listverse.com":"0.3008","polygon.com":"0.2954","msn.com":"0.2648","esquire.com":"0.2336"},"item_score":0.75},{"id":53171,"url":"https:\/\/getpocket.com\/explore\/item\/cats-recognize-their-own-names-even-if-they-choose-to-ignore-them?utm_source=pocket-newtab","domain":"scientificamerican.com","title":"Cats Recognize Their Own Names\u2014Even If They Choose to Ignore Them","excerpt":"Domestic felines distinguish between their monikers and similar-sounding words, research shows.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"centauri-dreams.org":"1.0000","astronomy.com":"1.0000","symmetrymagazine.org":"1.0000","preposterousuniverse.com":"1.0000","home.cern":"1.0000","astrologyzone.com":"0.9968","universetoday.com":"0.9964","planetary.org":"0.9954","skyandtelescope.com":"0.9896","earthsky.org":"0.9872","hakaimagazine.com":"0.9868","aps.org":"0.9867","dailygalaxy.com":"0.9854","biologos.org":"0.9835","evolution-institute.org":"0.9826","physicsworld.com":"0.9802","noaa.gov":"0.9770","cafeastrology.com":"0.9766","thespacereview.com":"0.9743","lensrentals.com":"0.9731","xkcd.com":"0.9703","greatamericaneclipse.com":"0.9702","space.com":"0.9699","nasa.gov":"0.9695","caltech.edu":"0.9689","e27.co":"0.9657","evolutionnews.org":"0.9654","elifesciences.org":"0.9629","biorxiv.org":"0.9620","lonelyspeck.com":"0.9494","esa.int":"0.9486","retractionwatch.com":"0.9484","ias.edu":"0.9406","sspnet.org":"0.9375","jhu.edu":"0.9370","spacenews.com":"0.9362","stephenwolfram.com":"0.9345","climatecentral.org":"0.9322","eos.org":"0.9313","iai.tv":"0.9296","academia.edu":"0.9293","ancient-code.com":"0.9267","cosmosmagazine.com":"0.9241","semanticscholar.org":"0.9185","airspacemag.com":"0.9171","sciencefriday.com":"0.9159","eclipse2017.org":"0.9157","scottaaronson.com":"0.9122","pnas.org":"0.9111","quantamagazine.org":"0.9068","osf.io":"0.9063","fermatslibrary.com":"0.9033","timeanddate.com":"0.8986","23andme.com":"0.8821","sciencenews.org":"0.8707","phys.org":"0.8692","js.org":"0.8518","carbonbrief.org":"0.8461","iop.org":"0.8390","apnic.net":"0.7945","pionic.org":"0.7581","nature.com":"0.7393","futurism.com":"0.7353","chemistryworld.com":"0.7343","trendintech.com":"0.7256","discovermagazine.com":"0.7246","tandfonline.com":"0.7170","nautil.us":"0.7139","kurzweilai.net":"0.7068","sciencealert.com":"0.7040","ucsc.edu":"0.7022","seeker.com":"0.6867","livescience.com":"0.6848","sciencemag.org":"0.6813","brown.edu":"0.6728","elsevier.com":"0.6644","edge.org":"0.6598","arxiv.org":"0.6514","secondnexus.com":"0.6479","radiolab.org":"0.6464","waitbutwhy.com":"0.6457","mindhacks.com":"0.6451","curiosity.com":"0.6430","nuclearsecrecy.com":"0.6426","andrewgelman.com":"0.6358","newscientist.com":"0.6341","si.edu":"0.6281","techxplore.com":"0.6257","lesswrong.com":"0.6201","scientificamerican.com":"0.6175","energy.gov":"0.6154","philosophynow.org":"0.6116","iflscience.com":"0.5847","lastwordonnothing.com":"0.5763","kaggle.com":"0.5738","undark.org":"0.5732","nextbigfuture.com":"0.5708","fastforwardlabs.com":"0.5705","3quarksdaily.com":"0.5656","heterodoxacademy.org":"0.5587","pitt.edu":"0.5581","frontiersin.org":"0.5539","realclearscience.com":"0.5516","researchgate.net":"0.5363","bigthink.com":"0.5338","cam.ac.uk":"0.5335","evanmiller.org":"0.5311","newatlas.com":"0.5275","lse.ac.uk":"0.5234","kottke.org":"0.5233","techtimes.com":"0.5232","illinois.edu":"0.5152","inverse.com":"0.5040","plos.org":"0.4980","popularmechanics.com":"0.4953","smithsonianmag.com":"0.4839","aeon.co":"0.4728","nationalgeographic.com":"0.4513","atlasobscura.com":"0.4439","petapixel.com":"0.4353","brainpickings.org":"0.4341","quillette.com":"0.4299","sciencedaily.com":"0.4210","neurosciencenews.com":"0.4007","stanford.edu":"0.3829","slatestarcodex.com":"0.3760","technologyreview.com":"0.3702","singularityhub.com":"0.3698","popsci.com":"0.3329","evonomics.com":"0.3269","openculture.com":"0.3076","ieee.org":"0.3062","collective-evolution.com":"0.3013","farnamstreetblog.com":"0.2988","medicalxpress.com":"0.2972","ted.com":"0.2836","hackaday.com":"0.2778","mentalfloss.com":"0.2728","theconversation.com":"0.2696","arstechnica.com":"0.2642","nymag.com":"0.2615","mit.edu":"0.2566","gizmodo.com":"0.2519","bbc.com":"0.2445","jamesclear.com":"0.2140","wired.co.uk":"0.2112","statnews.com":"0.2110","listverse.com":"0.2074","yahoo.com":"0.1969","nbcnews.com":"0.1895","nih.gov":"0.1861","wired.com":"0.1852","npr.org":"0.1630","telegraph.co.uk":"0.1507","paulgraham.com":"0.1350","qz.com":"0.1350","medicalnewstoday.com":"0.1347","ycombinator.com":"0.1271","bbc.co.uk":"0.1236","engadget.com":"0.1221","axios.com":"0.1215","newsweek.com":"0.1213","weforum.org":"0.1213","time.com":"0.1212","freecodecamp.org":"0.1176","propublica.org":"0.1169","thebaffler.com":"0.1128","thehindu.com":"0.1115","theguardian.com":"0.1103","boingboing.net":"0.1101","harvard.edu":"0.1091","vice.com":"0.1039","fivethirtyeight.com":"0.1004","independent.co.uk":"0.0994","lrb.co.uk":"0.0950","theatlantic.com":"0.0915","theverge.com":"0.0892","psychologytoday.com":"0.0860"},"item_score":0.73333333333333},{"id":53175,"url":"https:\/\/getpocket.com\/explore\/item\/charming-college-towns-with-off-campus-appeal?utm_source=pocket-newtab","domain":"afar.com","title":"Charming College Towns With Off-Campus Appeal","excerpt":"Whether you\u2019re touring colleges with your kids or there for extracurricular activities, these towns offer A+ fun.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"thetransportpolitic.com":"0.9978","hostelworld.com":"0.9976","askthepilot.com":"0.9898","traveller.com.au":"0.9736","thepointsguy.com":"0.9709","travelchannel.com":"0.9687","ianvisits.co.uk":"0.9687","skift.com":"0.9666","roughguides.com":"0.9634","smartertravel.com":"0.9607","oyster.com":"0.9604","booking.com":"0.9599","wikitravel.org":"0.9590","millionmilesecrets.com":"0.9587","carryology.com":"0.9579","lonelyplanet.com":"0.9558","japan-guide.com":"0.9528","nomadicmatt.com":"0.9509","tnooz.com":"0.9421","travelpulse.com":"0.9387","boardingarea.com":"0.9382","ricksteves.com":"0.9325","cntraveller.com":"0.9263","wheretraveler.com":"0.9250","jetsetter.com":"0.9208","marriott.com":"0.9148","afar.com":"0.9143","cntraveler.com":"0.9115","tripadvisor.com":"0.9097","ecophiles.com":"0.9063","nps.gov":"0.9038","fodors.com":"0.8980","tripsavvy.com":"0.8905","flightradar24.com":"0.8861","adventure-journal.com":"0.8798","coastalliving.com":"0.8487","travelandleisure.com":"0.8481","cntraveller.in":"0.8468","gearjunkie.com":"0.8212","rei.com":"0.7920","airbnb.com":"0.7910","vivalifestyleandtravel.com":"0.7891","streetsblog.org":"0.7831","explorepartsunknown.com":"0.7773","sunset.com":"0.7724","matadornetwork.com":"0.7616","theculturetrip.com":"0.7472","onlyinyourstate.com":"0.7431","everydaycarry.com":"0.7418","dwell.com":"0.7297","curbed.com":"0.7269","messynessychic.com":"0.7028","robbreport.com":"0.6929","backpacker.com":"0.6861","designyoutrust.com":"0.6743","architecturaldigest.com":"0.6710","chrisguillebeau.com":"0.6703","10best.com":"0.6586","levels.io":"0.6550","outsideonline.com":"0.6536","alaskaair.com":"0.6448","citymetric.com":"0.6409","nuclearsecrecy.com":"0.6383","thevintagenews.com":"0.6307","hcn.org":"0.6227","timeout.com":"0.6222","roadsandkingdoms.com":"0.6199","dezeen.com":"0.6129","londonist.com":"0.6073","thrillist.com":"0.6036","mansionglobal.com":"0.5890","design-milk.com":"0.5880","archdaily.com":"0.5840","500px.com":"0.5817","gardenandgun.com":"0.5746","eventbrite.com":"0.5634","dcist.com":"0.5427","fluentin3months.com":"0.5402","tynan.com":"0.5337","mrporter.com":"0.5315","insidehook.com":"0.5205","nationalgeographic.com":"0.5194","atlasobscura.com":"0.5084","surfer.com":"0.5000","wisebread.com":"0.4988","narrative.ly":"0.4733","gearpatrol.com":"0.4514","citylab.com":"0.4403","boredpanda.com":"0.4118","sfgate.com":"0.4115","thebookoflife.org":"0.4038","thisisinsider.com":"0.4036","indiehackers.com":"0.3882","petapixel.com":"0.3700","mercurynews.com":"0.3689","ribbonfarm.com":"0.3536","timeline.com":"0.3263","techinasia.com":"0.3226","gothamist.com":"0.3188","thepennyhoarder.com":"0.2899","popularmechanics.com":"0.2780","krebsonsecurity.com":"0.2659","digital-photography-school.com":"0.2613","thewirecutter.com":"0.2355","nerdwallet.com":"0.2335","yahoo.com":"0.2295","artsy.net":"0.2244","saveur.com":"0.2000"},"item_score":0.71666666666667},{"id":53199,"url":"https:\/\/getpocket.com\/explore\/item\/21-phrases-you-use-without-realizing-you-re-quoting-shakespeare?utm_source=pocket-newtab","domain":"mentalfloss.com","title":"21 Phrases You Use Without Realizing You\u2019re Quoting Shakespeare","excerpt":"Throughout nearly 40 plays, Shakespeare wrote quite a few lines that have since become more easily remembered than forgotten.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"stoodnt.com":"1.0000","checkio.org":"1.0000","allisonharbin.com":"1.0000","educationdive.com":"0.9692","eschoolnews.com":"0.9520","hechingerreport.org":"0.9432","edtechmagazine.com":"0.9340","the74million.org":"0.9307","edsurge.com":"0.9257","gettingsmart.com":"0.9254","chalkbeat.org":"0.9209","educationnext.org":"0.9173","fredrikdeboer.com":"0.9139","hackeducation.com":"0.9112","ascd.org":"0.8990","elearningindustry.com":"0.8895","edweek.org":"0.8823","edutopia.org":"0.8791","cultofpedagogy.com":"0.8759","class-central.com":"0.8738","teachthought.com":"0.8624","educause.edu":"0.8593","vanderbilt.edu":"0.8500","dataschool.io":"0.8500","edx.org":"0.8455","coursera.org":"0.8178","tes.com":"0.8157","educatorstechnology.com":"0.8092","timeshighereducation.com":"0.7976","weareteachers.com":"0.7968","lynda.com":"0.7925","datacamp.com":"0.7732","chroniclevitae.com":"0.7689","codecademy.com":"0.7598","insidehighered.com":"0.7439","kqed.org":"0.7268","udemy.com":"0.6803","ed.gov":"0.6640","skillshare.com":"0.6625","edublogs.org":"0.6553","airsassociation.org":"0.6521","freetech4teachers.com":"0.6503","osf.io":"0.6486","haschek.at":"0.6357","purdue.edu":"0.6162","futurelearn.com":"0.6052","brown.edu":"0.5968","chronicle.com":"0.5899","khanacademy.org":"0.5785","udacity.com":"0.5508","sagepub.com":"0.5357","campusreform.org":"0.5332","recurse.com":"0.5327","gatech.edu":"0.5320","mindhacks.com":"0.5283","unc.edu":"0.5260","neu.edu":"0.5222","thesmartset.com":"0.5097","ocregister.com":"0.4958","umich.edu":"0.4953","fluentu.com":"0.4911","princeton.edu":"0.4885","usc.edu":"0.4808","packtpub.com":"0.4778","ideo.com":"0.4769","mystudentvoices.com":"0.4700","cuny.edu":"0.4679","ubc.ca":"0.4665","singularityhub.com":"0.4148","parent.co":"0.4008","introvertdear.com":"0.3880","ucsd.edu":"0.3811","pdx.edu":"0.3810","thecollegefix.com":"0.3688","indiana.edu":"0.3610","freecodecamp.org":"0.3434","themarshallproject.org":"0.3379","mit.edu":"0.3164","collegeinfogeek.com":"0.3105","stanford.edu":"0.2129","80000hours.org":"0.1789","ted.com":"0.1666","calnewport.com":"0.1527","nature.com":"0.1497","openculture.com":"0.1409","farnamstreetblog.com":"0.1389","harvard.edu":"0.1329","weforum.org":"0.1292","thebaffler.com":"0.0937"},"item_score":0.7},{"id":53210,"url":"https:\/\/humanparts.medium.com\/walking-is-medicine-why-long-walks-will-change-your-life-59297e955a49?utm_source=pocket-newtab","domain":"humanparts.medium.com","title":"Why Long Walks Will Change Your Life","excerpt":"Walking is medicine \u2014 it cures anxiety, sparks inspiration, and brings us back to ourselves.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580396413","engagement":"","parameter_set":"default","domain_affinities":{"sneakerheadvc.com":"1.0000","pageflutter.com":"1.0000","dandywithlens.com":"1.0000","workflowy.com":"0.9995","doist.com":"0.9974","tinyrayofsunshine.com":"0.9966","gettingthingsdone.com":"0.9960","bohoberry.com":"0.9960","jkglei.com":"0.9944","writingroutines.com":"0.9938","leankit.com":"0.9934","facilethings.com":"0.9924","littlecoffeefox.com":"0.9904","bestself.co":"0.9887","thedigitalprojectmanager.com":"0.9874","paulminors.com":"0.9845","benjaminhardy.com":"0.9839","positivityblog.com":"0.9829","timemanagementninja.com":"0.9818","productiveflourishing.com":"0.9807","theascent.biz":"0.9798","vunela.com":"0.9797","mindmeister.com":"0.9793","fortelabs.co":"0.9793","writingcooperative.com":"0.9782","nextscientist.com":"0.9771","omnifocus.com":"0.9754","edbatista.com":"0.9753","sumo.com":"0.9749","thefocuscourse.com":"0.9747","nozbe.com":"0.9735","jetpens.com":"0.9734","sparringmind.com":"0.9734","43folders.com":"0.9725","toggl.com":"0.9725","trello.com":"0.9723","boomerangapp.com":"0.9712","rescuetime.com":"0.9709","thecoffeelicious.com":"0.9649","todoist.com":"0.9644","next-action.eu":"0.9639","optinmonster.com":"0.9621","briantracy.com":"0.9617","goinswriter.com":"0.9609","slack.com":"0.9599","intelligentchange.com":"0.9576","alexvermeer.com":"0.9570","developgoodhabits.com":"0.9568","scrumalliance.org":"0.9553","iqmatrix.com":"0.9553","samuelthomasdavies.com":"0.9542","newtonhq.com":"0.9528","smartblogger.com":"0.9527","iamwire.com":"0.9522","blinkist.com":"0.9511","dailystoic.com":"0.9511","asana.com":"0.9508","chasejarvis.com":"0.9490","jamierubin.net":"0.9477","artplusmarketing.com":"0.9473","yesware.com":"0.9471","wrike.com":"0.9468","scaledagileframework.com":"0.9440","productivityist.com":"0.9430","aerogrammestudio.com":"0.9430","stevepavlina.com":"0.9427","buffer.com":"0.9424","nosidebar.com":"0.9423","codewithoutrules.com":"0.9367","asianefficiency.com":"0.9324","heleo.com":"0.9286","thriveglobal.com":"0.9218","brianknapp.me":"0.9167","atlassian.com":"0.9027","dariusforoux.com":"0.8930","themission.co":"0.8837","evernote.com":"0.8764","marcandangel.com":"0.8742","zapier.com":"0.8677","alifeofproductivity.com":"0.8592","garyvaynerchuk.com":"0.8506","success.com":"0.8341","ryanholiday.net":"0.8334","ronjeffries.com":"0.8319","producthunt.com":"0.8311","byrslf.co":"0.8250","nirandfar.com":"0.8163","mindtools.com":"0.8139","thewritepractice.com":"0.8115","michaelhyatt.com":"0.8072","gretchenrubin.com":"0.7994","highexistence.com":"0.7913","raptitude.com":"0.7877","tinybuddha.com":"0.7854","addicted2success.com":"0.7835","jamesclear.com":"0.7775","pickthebrain.com":"0.7770","unstuck.com":"0.7740","women2.com":"0.7720","bakadesuyo.com":"0.7695","nateliason.com":"0.7549","bemorewithless.com":"0.7546","samaltman.com":"0.7525","zenhabits.net":"0.7511","barryoreilly.com":"0.7500","99u.com":"0.7405","iwillteachyoutoberich.com":"0.7372","scotthyoung.com":"0.7197","bestlifeonline.com":"0.7127","calnewport.com":"0.7126","lifehack.org":"0.7013","sivers.org":"0.6931","thoughtcatalog.com":"0.6876","tim.blog":"0.6803","inc.com":"0.6786","becomingminimalist.com":"0.6759","ideapod.com":"0.6709","nngroup.com":"0.6541","signalvnoise.com":"0.6447","entrepreneur.com":"0.6345","paulgraham.com":"0.6254","theladders.com":"0.6254","farnamstreetblog.com":"0.6197","markmanson.net":"0.6191","coach.me":"0.6112","jamesaltucher.com":"0.5922","medium.com":"0.5865","bufferapp.com":"0.5819","themuse.com":"0.5761","thesweetsetup.com":"0.5471","artofmanliness.com":"0.5323","dev.to":"0.5323","fastcompany.com":"0.5224","brainpickings.org":"0.5224","hubspot.com":"0.4909","ribbonfarm.com":"0.4617","neilpatel.com":"0.4292","businessinsider.com":"0.4207","lifehacker.com":"0.4171","thesimpledollar.com":"0.4128","weforum.org":"0.4122","creativebloq.com":"0.4114","hbr.org":"0.4111","ted.com":"0.4015","mindful.org":"0.3880","invisionapp.com":"0.3839","linkedin.com":"0.3824","firstround.com":"0.3672","observer.com":"0.3503","psychologytoday.com":"0.3484","qz.com":"0.3467","thebookoflife.org":"0.3395","1843magazine.com":"0.3388","waitbutwhy.com":"0.3034","ycombinator.com":"0.3004","smashingmagazine.com":"0.2880","mic.com":"0.2765","singularityhub.com":"0.2734","thenextweb.com":"0.2723","forbes.com":"0.2639","bigthink.com":"0.2524","wikihow.com":"0.2406","makeuseof.com":"0.2325","mashable.com":"0.2183","quora.com":"0.2018","udemy.com":"0.1918","cnbc.com":"0.1902","bbc.com":"0.1875","huffingtonpost.com":"0.1810","mckinsey.com":"0.1616","nautil.us":"0.1611","25iq.com":"0.1339","sciencedaily.com":"0.1242"},"item_score":0.68333333333333},{"id":53201,"url":"https:\/\/www.thenation.com\/article\/society\/drag-queen-slave-ball\/?utm_source=pocket-newtab","domain":"thenation.com","title":"The First Drag Queen Was a Former Slave","excerpt":"His name was William Dorsey Swann, but to his friends he was known as \u201cthe Queen.\u201d Both of those names had been forgotten for nearly a century before I rediscovered them while researching at Columbia University.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580468401","engagement":"","parameter_set":"default","domain_affinities":{"38north.org":"1.0000","politicalwire.com":"1.0000","rightwingwatch.org":"1.0000","tomdispatch.com":"1.0000","judicialwatch.org":"1.0000","pressthink.org":"1.0000","edri.org":"1.0000","dailyprogress.com":"1.0000","lobelog.com":"1.0000","brennancenter.org":"1.0000","electionlawblog.org":"1.0000","kstp.com":"1.0000","cwmemory.com":"1.0000","secularhumanism.org":"1.0000","ericposner.com":"1.0000","politicalresearch.org":"1.0000","occupydemocrats.com":"1.0000","afghanistan-analysts.org":"1.0000","atlanticcouncil.org":"1.0000","imperialglobalexeter.com":"1.0000","theamericanmirror.com":"1.0000","thenib.com":"1.0000","ir.net":"1.0000","shareblue.com":"1.0000","takecareblog.com":"1.0000","voterstudygroup.org":"1.0000","palmerreport.com":"0.9998","meforum.org":"0.9997","reverepress.com":"0.9994","politicususa.com":"0.9992","washingtonjournal.com":"0.9992","consortiumnews.com":"0.9990","scotusblog.com":"0.9986","people-press.org":"0.9968","mediaite.com":"0.9959","rollcall.com":"0.9959","gatestoneinstitute.org":"0.9959","amgreatness.com":"0.9959","msnbc.com":"0.9954","middleeasteye.net":"0.9953","middleeastmonitor.com":"0.9946","justsecurity.org":"0.9946","emptywheel.net":"0.9942","extranewsfeed.com":"0.9940","conservativereview.com":"0.9935","splcenter.org":"0.9934","ecfr.eu":"0.9934","lawfareblog.com":"0.9930","frontpagemag.com":"0.9929","israelnationalnews.com":"0.9907","libertarianism.org":"0.9907","bluedotdaily.com":"0.9907","mcclatchydc.com":"0.9905","claremont.org":"0.9902","al-monitor.com":"0.9896","politics.co.uk":"0.9893","mediamatters.org":"0.9888","monthlyreview.org":"0.9887","democracynow.org":"0.9881","socialistworker.org":"0.9880","thehill.com":"0.9872","sojo.net":"0.9872","thegatewaypundit.com":"0.9872","lawnewz.com":"0.9870","prospect.org":"0.9866","nationalinterest.org":"0.9865","c-span.org":"0.9862","newsocialist.org.uk":"0.9854","politifact.com":"0.9853","billmoyers.com":"0.9847","heritage.org":"0.9842","defensenews.com":"0.9835","factcheck.org":"0.9832","pewforum.org":"0.9831","foreignpolicy.com":"0.9828","algemeiner.com":"0.9818","democracyjournal.org":"0.9808","westernjournalism.com":"0.9806","realclearpolitics.com":"0.9794","warisboring.com":"0.9788","stripes.com":"0.9786","whitehouse.gov":"0.9781","rawstory.com":"0.9778","warontherocks.com":"0.9778","wonkette.com":"0.9774","electronicintifada.net":"0.9766","politico.eu":"0.9766","dailykos.com":"0.9765","washingtontimes.com":"0.9765","thinkprogress.org":"0.9747","realcleardefense.com":"0.9740","washingtonexaminer.com":"0.9739","circa.com":"0.9730","commentarymagazine.com":"0.9717","hotair.com":"0.9710","townhall.com":"0.9709","cfr.org":"0.9704","dissentmagazine.org":"0.9702","currentaffairs.org":"0.9683","counterpunch.org":"0.9681","spectator.org":"0.9663","defenseone.com":"0.9657","commondreams.org":"0.9640","theamericanconservative.com":"0.9623","inthesetimes.com":"0.9616","jpost.com":"0.9614","att.net":"0.9609","washingtonmonthly.com":"0.9608","opendemocracy.net":"0.9591","dailycaller.com":"0.9569","forward.com":"0.9564","dailysignal.com":"0.9557","jacobinmag.com":"0.9551","cjr.org":"0.9516","theintercept.com":"0.9511","politico.com":"0.9498","foreignaffairs.com":"0.9497","aljazeera.com":"0.9495","nationalreview.com":"0.9493","truth-out.org":"0.9492","thediplomat.com":"0.9404","thenation.com":"0.9396","ap.org":"0.9369","apnews.com":"0.9347","theroot.com":"0.9343","truthdig.com":"0.9343","timesofisrael.com":"0.9304","pjmedia.com":"0.9296","haaretz.com":"0.9223","versobooks.com":"0.9167","evonomics.com":"0.9155","alternet.org":"0.9150","newrepublic.com":"0.9132","city-journal.org":"0.9126","takimag.com":"0.9080","axios.com":"0.9080","brookings.edu":"0.9054","motherjones.com":"0.9039","thefederalist.com":"0.9031","theblaze.com":"0.9026","tabletmag.com":"0.8970","pewresearch.org":"0.8970","talkingpointsmemo.com":"0.8949","splinternews.com":"0.8868","dw.com":"0.8827","thestranger.com":"0.8820","project-syndicate.org":"0.8763","rt.com":"0.8700","thedailybeast.com":"0.8668","bostonreview.net":"0.8619","salon.com":"0.8580","foxnews.com":"0.8576","weeklystandard.com":"0.8571","snopes.com":"0.8525","washingtonpost.com":"0.8517","nationalpost.com":"0.8513","nybooks.com":"0.8402","newstatesman.com":"0.8373","thestar.com":"0.8341","grist.org":"0.8319","thebaffler.com":"0.8310","everydayfeminism.com":"0.8296","firstthings.com":"0.8230","autostraddle.com":"0.8209","poynter.org":"0.8205","newsweek.com":"0.8190","fee.org":"0.8160","quillette.com":"0.8154","reason.com":"0.8146","nplusonemag.com":"0.8087","harpers.org":"0.8018","theweek.com":"0.8013","nakedcapitalism.com":"0.7991","ft.com":"0.7970","reuters.com":"0.7936","propublica.org":"0.7902","nydailynews.com":"0.7888","niemanlab.org":"0.7863","vox.com":"0.7858","patheos.com":"0.7851","christianitytoday.com":"0.7840","allure.com":"0.7840","miamiherald.com":"0.7801","thenewinquiry.com":"0.7799","teenvogue.com":"0.7777","lareviewofbooks.org":"0.7766","psmag.com":"0.7748","slate.com":"0.7742","artsy.net":"0.7612","cnn.com":"0.7601","theestablishment.co":"0.7516","zerohedge.com":"0.7467","lithub.com":"0.7426","thetimes.co.uk":"0.7371","thegospelcoalition.org":"0.7325","thehindu.com":"0.7306","msn.com":"0.7299","texasmonthly.com":"0.7204","nbcnews.com":"0.7160","newyorker.com":"0.7141","citylab.com":"0.7140","cbsnews.com":"0.7125","vanityfair.com":"0.7090","theatlantic.com":"0.7056","esquire.com":"0.7032","theglobeandmail.com":"0.6974","fivethirtyeight.com":"0.6967","thewalrus.ca":"0.6966","economist.com":"0.6938","bostonglobe.com":"0.6925","nymag.com":"0.6894","chronicle.com":"0.6611","nytimes.com":"0.6579","latimes.com":"0.6558","slatestarcodex.com":"0.6534","cbc.ca":"0.6505","jezebel.com":"0.6485","chicagotribune.com":"0.6449","philly.com":"0.6438","pbs.org":"0.6418","sfchronicle.com":"0.6397","independent.co.uk":"0.6383","huffingtonpost.com":"0.6380","irishtimes.com":"0.6349","usatoday.com":"0.6307","seattletimes.com":"0.6300","longreads.com":"0.6255","theguardian.com":"0.6241","buzzfeed.com":"0.6239","ozy.com":"0.6223","gq.com":"0.6128","ribbonfarm.com":"0.6092","theonion.com":"0.6055","ndtv.com":"0.5997","jstor.org":"0.5997","mic.com":"0.5975","nypost.com":"0.5934","wsj.com":"0.5920","observer.com":"0.5878","boingboing.net":"0.5872","rollingstone.com":"0.5867","bbc.co.uk":"0.5831","1843magazine.com":"0.5799","theparisreview.org":"0.5737","theoutline.com":"0.5721","livemint.com":"0.5712","digiday.com":"0.5711","bustle.com":"0.5689","scroll.in":"0.5641","smithsonianmag.com":"0.5640","straitstimes.com":"0.5629","aeon.co":"0.5501","indiatimes.com":"0.5436","thecut.com":"0.5412","time.com":"0.5405","elle.com":"0.5392","dailymail.co.uk":"0.5358","eff.org":"0.5291","npr.org":"0.5254","vice.com":"0.5211","bloomberg.com":"0.5205","sfgate.com":"0.5201","digg.com":"0.5118","vogue.com":"0.5071","waitbutwhy.com":"0.4940","theundefeated.com":"0.4910","pastemagazine.com":"0.4870","mcsweeneys.net":"0.4864","bbc.com":"0.4808","popularmechanics.com":"0.4662","jalopnik.com":"0.4498","theconversation.com":"0.4458","paulgraham.com":"0.4394","markmanson.net":"0.4186","recode.net":"0.4029","michaelhyatt.com":"0.3894"},"item_score":0.66666666666667},{"id":53190,"url":"https:\/\/getpocket.com\/explore\/item\/why-new-york-city-stopped-building-subways?utm_source=pocket-newtab","domain":"citylab.com","title":"Why New York City Stopped Building Subways","excerpt":"Nearly 80 years ago, a construction standstill derailed the subway\u2019s progress, leading to its present crisis.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"38north.org":"1.0000","politicalwire.com":"1.0000","rightwingwatch.org":"1.0000","tomdispatch.com":"1.0000","judicialwatch.org":"1.0000","pressthink.org":"1.0000","edri.org":"1.0000","dailyprogress.com":"1.0000","lobelog.com":"1.0000","brennancenter.org":"1.0000","electionlawblog.org":"1.0000","kstp.com":"1.0000","cwmemory.com":"1.0000","secularhumanism.org":"1.0000","ericposner.com":"1.0000","politicalresearch.org":"1.0000","occupydemocrats.com":"1.0000","afghanistan-analysts.org":"1.0000","atlanticcouncil.org":"1.0000","imperialglobalexeter.com":"1.0000","theamericanmirror.com":"1.0000","thenib.com":"1.0000","ir.net":"1.0000","shareblue.com":"1.0000","takecareblog.com":"1.0000","voterstudygroup.org":"1.0000","palmerreport.com":"0.9998","meforum.org":"0.9997","reverepress.com":"0.9994","politicususa.com":"0.9992","washingtonjournal.com":"0.9992","consortiumnews.com":"0.9990","scotusblog.com":"0.9986","people-press.org":"0.9968","mediaite.com":"0.9959","rollcall.com":"0.9959","gatestoneinstitute.org":"0.9959","amgreatness.com":"0.9959","msnbc.com":"0.9954","middleeasteye.net":"0.9953","middleeastmonitor.com":"0.9946","justsecurity.org":"0.9946","emptywheel.net":"0.9942","extranewsfeed.com":"0.9940","conservativereview.com":"0.9935","splcenter.org":"0.9934","ecfr.eu":"0.9934","lawfareblog.com":"0.9930","frontpagemag.com":"0.9929","israelnationalnews.com":"0.9907","libertarianism.org":"0.9907","bluedotdaily.com":"0.9907","mcclatchydc.com":"0.9905","claremont.org":"0.9902","al-monitor.com":"0.9896","politics.co.uk":"0.9893","mediamatters.org":"0.9888","monthlyreview.org":"0.9887","democracynow.org":"0.9881","socialistworker.org":"0.9880","thehill.com":"0.9872","sojo.net":"0.9872","thegatewaypundit.com":"0.9872","lawnewz.com":"0.9870","prospect.org":"0.9866","nationalinterest.org":"0.9865","c-span.org":"0.9862","newsocialist.org.uk":"0.9854","politifact.com":"0.9853","billmoyers.com":"0.9847","heritage.org":"0.9842","defensenews.com":"0.9835","factcheck.org":"0.9832","pewforum.org":"0.9831","foreignpolicy.com":"0.9828","algemeiner.com":"0.9818","democracyjournal.org":"0.9808","westernjournalism.com":"0.9806","realclearpolitics.com":"0.9794","warisboring.com":"0.9788","stripes.com":"0.9786","whitehouse.gov":"0.9781","rawstory.com":"0.9778","warontherocks.com":"0.9778","wonkette.com":"0.9774","electronicintifada.net":"0.9766","politico.eu":"0.9766","dailykos.com":"0.9765","washingtontimes.com":"0.9765","thinkprogress.org":"0.9747","realcleardefense.com":"0.9740","washingtonexaminer.com":"0.9739","circa.com":"0.9730","commentarymagazine.com":"0.9717","hotair.com":"0.9710","townhall.com":"0.9709","cfr.org":"0.9704","dissentmagazine.org":"0.9702","currentaffairs.org":"0.9683","counterpunch.org":"0.9681","spectator.org":"0.9663","defenseone.com":"0.9657","commondreams.org":"0.9640","theamericanconservative.com":"0.9623","inthesetimes.com":"0.9616","jpost.com":"0.9614","att.net":"0.9609","washingtonmonthly.com":"0.9608","opendemocracy.net":"0.9591","dailycaller.com":"0.9569","forward.com":"0.9564","dailysignal.com":"0.9557","jacobinmag.com":"0.9551","cjr.org":"0.9516","theintercept.com":"0.9511","politico.com":"0.9498","foreignaffairs.com":"0.9497","aljazeera.com":"0.9495","nationalreview.com":"0.9493","truth-out.org":"0.9492","thediplomat.com":"0.9404","thenation.com":"0.9396","ap.org":"0.9369","apnews.com":"0.9347","theroot.com":"0.9343","truthdig.com":"0.9343","timesofisrael.com":"0.9304","pjmedia.com":"0.9296","haaretz.com":"0.9223","versobooks.com":"0.9167","evonomics.com":"0.9155","alternet.org":"0.9150","newrepublic.com":"0.9132","city-journal.org":"0.9126","takimag.com":"0.9080","axios.com":"0.9080","brookings.edu":"0.9054","motherjones.com":"0.9039","thefederalist.com":"0.9031","theblaze.com":"0.9026","tabletmag.com":"0.8970","pewresearch.org":"0.8970","talkingpointsmemo.com":"0.8949","splinternews.com":"0.8868","dw.com":"0.8827","thestranger.com":"0.8820","project-syndicate.org":"0.8763","rt.com":"0.8700","thedailybeast.com":"0.8668","bostonreview.net":"0.8619","salon.com":"0.8580","foxnews.com":"0.8576","weeklystandard.com":"0.8571","snopes.com":"0.8525","washingtonpost.com":"0.8517","nationalpost.com":"0.8513","nybooks.com":"0.8402","newstatesman.com":"0.8373","thestar.com":"0.8341","grist.org":"0.8319","thebaffler.com":"0.8310","everydayfeminism.com":"0.8296","firstthings.com":"0.8230","autostraddle.com":"0.8209","poynter.org":"0.8205","newsweek.com":"0.8190","fee.org":"0.8160","quillette.com":"0.8154","reason.com":"0.8146","nplusonemag.com":"0.8087","harpers.org":"0.8018","theweek.com":"0.8013","nakedcapitalism.com":"0.7991","ft.com":"0.7970","reuters.com":"0.7936","propublica.org":"0.7902","nydailynews.com":"0.7888","niemanlab.org":"0.7863","vox.com":"0.7858","patheos.com":"0.7851","christianitytoday.com":"0.7840","allure.com":"0.7840","miamiherald.com":"0.7801","thenewinquiry.com":"0.7799","teenvogue.com":"0.7777","lareviewofbooks.org":"0.7766","psmag.com":"0.7748","slate.com":"0.7742","artsy.net":"0.7612","cnn.com":"0.7601","theestablishment.co":"0.7516","zerohedge.com":"0.7467","lithub.com":"0.7426","thetimes.co.uk":"0.7371","thegospelcoalition.org":"0.7325","thehindu.com":"0.7306","msn.com":"0.7299","texasmonthly.com":"0.7204","nbcnews.com":"0.7160","newyorker.com":"0.7141","citylab.com":"0.7140","cbsnews.com":"0.7125","vanityfair.com":"0.7090","theatlantic.com":"0.7056","esquire.com":"0.7032","theglobeandmail.com":"0.6974","fivethirtyeight.com":"0.6967","thewalrus.ca":"0.6966","economist.com":"0.6938","bostonglobe.com":"0.6925","nymag.com":"0.6894","chronicle.com":"0.6611","nytimes.com":"0.6579","latimes.com":"0.6558","slatestarcodex.com":"0.6534","cbc.ca":"0.6505","jezebel.com":"0.6485","chicagotribune.com":"0.6449","philly.com":"0.6438","pbs.org":"0.6418","sfchronicle.com":"0.6397","independent.co.uk":"0.6383","huffingtonpost.com":"0.6380","irishtimes.com":"0.6349","usatoday.com":"0.6307","seattletimes.com":"0.6300","longreads.com":"0.6255","theguardian.com":"0.6241","buzzfeed.com":"0.6239","ozy.com":"0.6223","gq.com":"0.6128","ribbonfarm.com":"0.6092","theonion.com":"0.6055","ndtv.com":"0.5997","jstor.org":"0.5997","mic.com":"0.5975","nypost.com":"0.5934","wsj.com":"0.5920","observer.com":"0.5878","boingboing.net":"0.5872","rollingstone.com":"0.5867","bbc.co.uk":"0.5831","1843magazine.com":"0.5799","theparisreview.org":"0.5737","theoutline.com":"0.5721","livemint.com":"0.5712","digiday.com":"0.5711","bustle.com":"0.5689","scroll.in":"0.5641","smithsonianmag.com":"0.5640","straitstimes.com":"0.5629","aeon.co":"0.5501","indiatimes.com":"0.5436","thecut.com":"0.5412","time.com":"0.5405","elle.com":"0.5392","dailymail.co.uk":"0.5358","eff.org":"0.5291","npr.org":"0.5254","vice.com":"0.5211","bloomberg.com":"0.5205","sfgate.com":"0.5201","digg.com":"0.5118","vogue.com":"0.5071","waitbutwhy.com":"0.4940","theundefeated.com":"0.4910","pastemagazine.com":"0.4870","mcsweeneys.net":"0.4864","bbc.com":"0.4808","popularmechanics.com":"0.4662","jalopnik.com":"0.4498","theconversation.com":"0.4458","paulgraham.com":"0.4394","markmanson.net":"0.4186","recode.net":"0.4029","michaelhyatt.com":"0.3894"},"item_score":0.65},{"id":53182,"url":"https:\/\/getpocket.com\/explore\/item\/the-miracle-mineral-the-world-needs?utm_source=pocket-newtab","domain":"bbc.com","title":"The \u2018Miracle Mineral\u2019 the World Needs","excerpt":"You can\u2019t grow crops without phosphorus. To get it, farmers often rely on expensive, frequently unavailable fertiliser. But there could be a better\u2014and easier\u2014way.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"tomcritchlow.com":"1.0000","startups.co":"1.0000","deekit.com":"1.0000","priceintelligently.com":"0.9868","appsterhq.com":"0.9847","oberlo.com":"0.9840","parse.ly":"0.9832","venturegeneratedcontent.com":"0.9811","christophjanz.blogspot.com":"0.9811","bigcommerce.com":"0.9787","saleshacker.com":"0.9781","sharetribe.com":"0.9753","marsdd.com":"0.9682","forentrepreneurs.com":"0.9682","profitwell.com":"0.9680","abetterlemonadestand.com":"0.9654","sixteenventures.com":"0.9651","fi.co":"0.9641","guykawasaki.com":"0.9636","bplans.com":"0.9605","capitalandgrowth.org":"0.9605","themacro.com":"0.9593","sba.gov":"0.9586","fxempire.com":"0.9575","greylock.com":"0.9216","nathanbarry.com":"0.9087","nickkolenda.com":"0.9045","reactionwheel.net":"0.8917","gaps.com":"0.8818","clearbit.com":"0.8589","sequoiacap.com":"0.8460","mattermark.com":"0.8454","tomtunguz.com":"0.8443","ducttapemarketing.com":"0.8388","abovethecrowd.com":"0.8379","poetsandquants.com":"0.8284","infusionsoft.com":"0.8273","smallbiztrends.com":"0.8227","500hats.com":"0.8218","saastr.com":"0.8192","leanstack.com":"0.8170","thinkgrowth.org":"0.8142","svpg.com":"0.8141","hotjar.com":"0.8127","ondeckdaily.com":"0.8064","baremetrics.com":"0.8061","jacquesmattheij.com":"0.7906","retaildive.com":"0.7904","steveblank.com":"0.7899","foundrmag.com":"0.7861","chicagobusiness.com":"0.7844","customerthink.com":"0.7812","business.com":"0.7802","25iq.com":"0.7792","alleywatch.com":"0.7792","close.io":"0.7614","samaltman.com":"0.7568","producthabits.com":"0.7492","growandconvert.com":"0.7468","strategyzer.com":"0.7444","shopify.com":"0.7332","lucidchart.com":"0.7324","mixpanel.com":"0.7296","gumroad.com":"0.7254","toprankblog.com":"0.7163","openviewpartners.com":"0.7134","groovehq.com":"0.7092","bain.com":"0.7007","fastforwardlabs.com":"0.6959","drift.com":"0.6910","conversionxl.com":"0.6883","businessnewsdaily.com":"0.6848","blackboxofpm.com":"0.6772","neilpatel.com":"0.6770","startupsventurecapital.com":"0.6769","inc42.com":"0.6730","mindtheproduct.com":"0.6724","500.co":"0.6723","copyhackers.com":"0.6710","techstars.com":"0.6704","doubleyourfreelancing.com":"0.6654","businessoffashion.com":"0.6522","caseyaccidental.com":"0.6463","businessesgrow.com":"0.6446","feld.com":"0.6412","indiehackers.com":"0.6412","bothsidesofthetable.com":"0.6327","later.com":"0.6316","youexec.com":"0.6271","angel.co":"0.6262","belitsoft.com":"0.6238","salesforce.com":"0.6225","factordaily.com":"0.6201","visualcapitalist.com":"0.6196","vccircle.com":"0.6157","designbetter.co":"0.6112","kk.org":"0.6081","helpscout.net":"0.6062","mckinsey.com":"0.6047","business2community.com":"0.6000","tech.co":"0.5934","marketo.com":"0.5912","asmartbear.com":"0.5895","practicalecommerce.com":"0.5854","pmarchive.com":"0.5818","jeffbullas.com":"0.5804","l2inc.com":"0.5795","growthlab.com":"0.5787","wix.com":"0.5764","hbs.edu":"0.5753","coelevate.com":"0.5646","enterprisersproject.com":"0.5566","goldmansachs.com":"0.5414","techinasia.com":"0.5413","stratechery.com":"0.5244","paulgraham.com":"0.5164","hubspot.com":"0.4771","kissmetrics.com":"0.4761","avc.com":"0.4633","entrepreneur.com":"0.4436","jamesclear.com":"0.4382","firstround.com":"0.4294","slideshare.net":"0.3982","a16z.com":"0.3875","strategy-business.com":"0.3803","signalvnoise.com":"0.3801","cbinsights.com":"0.3707","forbes.com":"0.3645","ycombinator.com":"0.3289","hbr.org":"0.3180","jamesaltucher.com":"0.3150","fortune.com":"0.2958","linkedin.com":"0.2888","coach.me":"0.2770","bloomberg.com":"0.2515","thecut.com":"0.2381","recode.net":"0.2121","cnbc.com":"0.2118","thenextweb.com":"0.2053","inc.com":"0.2013","techcrunch.com":"0.1988","fastcompany.com":"0.1949","dariusforoux.com":"0.1935","venturebeat.com":"0.1905","ted.com":"0.1855","themission.co":"0.1817","99u.com":"0.1813","tim.blog":"0.1797","mit.edu":"0.1778","farnamstreetblog.com":"0.1764","success.com":"0.1677","hackernoon.com":"0.1649","fastcodesign.com":"0.1355","investopedia.com":"0.1223"},"item_score":0.63333333333333},{"id":53197,"url":"https:\/\/getpocket.com\/explore\/item\/the-romantic-venus-we-never-knew?utm_source=pocket-newtab","domain":"nautil.us","title":"The Romantic Venus We Never Knew","excerpt":"Venus used to be as fit for life as Earth.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"centauri-dreams.org":"1.0000","astronomy.com":"1.0000","symmetrymagazine.org":"1.0000","preposterousuniverse.com":"1.0000","home.cern":"1.0000","astrologyzone.com":"0.9968","universetoday.com":"0.9964","planetary.org":"0.9954","skyandtelescope.com":"0.9896","earthsky.org":"0.9872","hakaimagazine.com":"0.9868","aps.org":"0.9867","dailygalaxy.com":"0.9854","biologos.org":"0.9835","evolution-institute.org":"0.9826","physicsworld.com":"0.9802","noaa.gov":"0.9770","cafeastrology.com":"0.9766","thespacereview.com":"0.9743","lensrentals.com":"0.9731","xkcd.com":"0.9703","greatamericaneclipse.com":"0.9702","space.com":"0.9699","nasa.gov":"0.9695","caltech.edu":"0.9689","e27.co":"0.9657","evolutionnews.org":"0.9654","elifesciences.org":"0.9629","biorxiv.org":"0.9620","lonelyspeck.com":"0.9494","esa.int":"0.9486","retractionwatch.com":"0.9484","ias.edu":"0.9406","sspnet.org":"0.9375","jhu.edu":"0.9370","spacenews.com":"0.9362","stephenwolfram.com":"0.9345","climatecentral.org":"0.9322","eos.org":"0.9313","iai.tv":"0.9296","academia.edu":"0.9293","ancient-code.com":"0.9267","cosmosmagazine.com":"0.9241","semanticscholar.org":"0.9185","airspacemag.com":"0.9171","sciencefriday.com":"0.9159","eclipse2017.org":"0.9157","scottaaronson.com":"0.9122","pnas.org":"0.9111","quantamagazine.org":"0.9068","osf.io":"0.9063","fermatslibrary.com":"0.9033","timeanddate.com":"0.8986","23andme.com":"0.8821","sciencenews.org":"0.8707","phys.org":"0.8692","js.org":"0.8518","carbonbrief.org":"0.8461","iop.org":"0.8390","apnic.net":"0.7945","pionic.org":"0.7581","nature.com":"0.7393","futurism.com":"0.7353","chemistryworld.com":"0.7343","trendintech.com":"0.7256","discovermagazine.com":"0.7246","tandfonline.com":"0.7170","nautil.us":"0.7139","kurzweilai.net":"0.7068","sciencealert.com":"0.7040","ucsc.edu":"0.7022","seeker.com":"0.6867","livescience.com":"0.6848","sciencemag.org":"0.6813","brown.edu":"0.6728","elsevier.com":"0.6644","edge.org":"0.6598","arxiv.org":"0.6514","secondnexus.com":"0.6479","radiolab.org":"0.6464","waitbutwhy.com":"0.6457","mindhacks.com":"0.6451","curiosity.com":"0.6430","nuclearsecrecy.com":"0.6426","andrewgelman.com":"0.6358","newscientist.com":"0.6341","si.edu":"0.6281","techxplore.com":"0.6257","lesswrong.com":"0.6201","scientificamerican.com":"0.6175","energy.gov":"0.6154","philosophynow.org":"0.6116","iflscience.com":"0.5847","lastwordonnothing.com":"0.5763","kaggle.com":"0.5738","undark.org":"0.5732","nextbigfuture.com":"0.5708","fastforwardlabs.com":"0.5705","3quarksdaily.com":"0.5656","heterodoxacademy.org":"0.5587","pitt.edu":"0.5581","frontiersin.org":"0.5539","realclearscience.com":"0.5516","researchgate.net":"0.5363","bigthink.com":"0.5338","cam.ac.uk":"0.5335","evanmiller.org":"0.5311","newatlas.com":"0.5275","lse.ac.uk":"0.5234","kottke.org":"0.5233","techtimes.com":"0.5232","illinois.edu":"0.5152","inverse.com":"0.5040","plos.org":"0.4980","popularmechanics.com":"0.4953","smithsonianmag.com":"0.4839","aeon.co":"0.4728","nationalgeographic.com":"0.4513","atlasobscura.com":"0.4439","petapixel.com":"0.4353","brainpickings.org":"0.4341","quillette.com":"0.4299","sciencedaily.com":"0.4210","neurosciencenews.com":"0.4007","stanford.edu":"0.3829","slatestarcodex.com":"0.3760","technologyreview.com":"0.3702","singularityhub.com":"0.3698","popsci.com":"0.3329","evonomics.com":"0.3269","openculture.com":"0.3076","ieee.org":"0.3062","collective-evolution.com":"0.3013","farnamstreetblog.com":"0.2988","medicalxpress.com":"0.2972","ted.com":"0.2836","hackaday.com":"0.2778","mentalfloss.com":"0.2728","theconversation.com":"0.2696","arstechnica.com":"0.2642","nymag.com":"0.2615","mit.edu":"0.2566","gizmodo.com":"0.2519","bbc.com":"0.2445","jamesclear.com":"0.2140","wired.co.uk":"0.2112","statnews.com":"0.2110","listverse.com":"0.2074","yahoo.com":"0.1969","nbcnews.com":"0.1895","nih.gov":"0.1861","wired.com":"0.1852","npr.org":"0.1630","telegraph.co.uk":"0.1507","paulgraham.com":"0.1350","qz.com":"0.1350","medicalnewstoday.com":"0.1347","ycombinator.com":"0.1271","bbc.co.uk":"0.1236","engadget.com":"0.1221","axios.com":"0.1215","newsweek.com":"0.1213","weforum.org":"0.1213","time.com":"0.1212","freecodecamp.org":"0.1176","propublica.org":"0.1169","thebaffler.com":"0.1128","thehindu.com":"0.1115","theguardian.com":"0.1103","boingboing.net":"0.1101","harvard.edu":"0.1091","vice.com":"0.1039","fivethirtyeight.com":"0.1004","independent.co.uk":"0.0994","lrb.co.uk":"0.0950","theatlantic.com":"0.0915","theverge.com":"0.0892","psychologytoday.com":"0.0860"},"item_score":0.61666666666667},{"id":53193,"url":"https:\/\/getpocket.com\/explore\/item\/why-your-brain-loves-procrastination?utm_source=pocket-newtab","domain":"vox.com","title":"Why Your Brain Loves Procrastination","excerpt":"Roughly 5 percent of the population has such a problem with chronic procrastination that it seriously affects their lives.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"sneakerheadvc.com":"1.0000","pageflutter.com":"1.0000","dandywithlens.com":"1.0000","workflowy.com":"0.9995","doist.com":"0.9974","tinyrayofsunshine.com":"0.9966","gettingthingsdone.com":"0.9960","bohoberry.com":"0.9960","jkglei.com":"0.9944","writingroutines.com":"0.9938","leankit.com":"0.9934","facilethings.com":"0.9924","littlecoffeefox.com":"0.9904","bestself.co":"0.9887","thedigitalprojectmanager.com":"0.9874","paulminors.com":"0.9845","benjaminhardy.com":"0.9839","positivityblog.com":"0.9829","timemanagementninja.com":"0.9818","productiveflourishing.com":"0.9807","theascent.biz":"0.9798","vunela.com":"0.9797","mindmeister.com":"0.9793","fortelabs.co":"0.9793","writingcooperative.com":"0.9782","nextscientist.com":"0.9771","omnifocus.com":"0.9754","edbatista.com":"0.9753","sumo.com":"0.9749","thefocuscourse.com":"0.9747","nozbe.com":"0.9735","jetpens.com":"0.9734","sparringmind.com":"0.9734","43folders.com":"0.9725","toggl.com":"0.9725","trello.com":"0.9723","boomerangapp.com":"0.9712","rescuetime.com":"0.9709","thecoffeelicious.com":"0.9649","todoist.com":"0.9644","next-action.eu":"0.9639","optinmonster.com":"0.9621","briantracy.com":"0.9617","goinswriter.com":"0.9609","slack.com":"0.9599","intelligentchange.com":"0.9576","alexvermeer.com":"0.9570","developgoodhabits.com":"0.9568","scrumalliance.org":"0.9553","iqmatrix.com":"0.9553","samuelthomasdavies.com":"0.9542","newtonhq.com":"0.9528","smartblogger.com":"0.9527","iamwire.com":"0.9522","blinkist.com":"0.9511","dailystoic.com":"0.9511","asana.com":"0.9508","chasejarvis.com":"0.9490","jamierubin.net":"0.9477","artplusmarketing.com":"0.9473","yesware.com":"0.9471","wrike.com":"0.9468","scaledagileframework.com":"0.9440","productivityist.com":"0.9430","aerogrammestudio.com":"0.9430","stevepavlina.com":"0.9427","buffer.com":"0.9424","nosidebar.com":"0.9423","codewithoutrules.com":"0.9367","asianefficiency.com":"0.9324","heleo.com":"0.9286","thriveglobal.com":"0.9218","brianknapp.me":"0.9167","atlassian.com":"0.9027","dariusforoux.com":"0.8930","themission.co":"0.8837","evernote.com":"0.8764","marcandangel.com":"0.8742","zapier.com":"0.8677","alifeofproductivity.com":"0.8592","garyvaynerchuk.com":"0.8506","success.com":"0.8341","ryanholiday.net":"0.8334","ronjeffries.com":"0.8319","producthunt.com":"0.8311","byrslf.co":"0.8250","nirandfar.com":"0.8163","mindtools.com":"0.8139","thewritepractice.com":"0.8115","michaelhyatt.com":"0.8072","gretchenrubin.com":"0.7994","highexistence.com":"0.7913","raptitude.com":"0.7877","tinybuddha.com":"0.7854","addicted2success.com":"0.7835","jamesclear.com":"0.7775","pickthebrain.com":"0.7770","unstuck.com":"0.7740","women2.com":"0.7720","bakadesuyo.com":"0.7695","nateliason.com":"0.7549","bemorewithless.com":"0.7546","samaltman.com":"0.7525","zenhabits.net":"0.7511","barryoreilly.com":"0.7500","99u.com":"0.7405","iwillteachyoutoberich.com":"0.7372","scotthyoung.com":"0.7197","bestlifeonline.com":"0.7127","calnewport.com":"0.7126","lifehack.org":"0.7013","sivers.org":"0.6931","thoughtcatalog.com":"0.6876","tim.blog":"0.6803","inc.com":"0.6786","becomingminimalist.com":"0.6759","ideapod.com":"0.6709","nngroup.com":"0.6541","signalvnoise.com":"0.6447","entrepreneur.com":"0.6345","paulgraham.com":"0.6254","theladders.com":"0.6254","farnamstreetblog.com":"0.6197","markmanson.net":"0.6191","coach.me":"0.6112","jamesaltucher.com":"0.5922","medium.com":"0.5865","bufferapp.com":"0.5819","themuse.com":"0.5761","thesweetsetup.com":"0.5471","artofmanliness.com":"0.5323","dev.to":"0.5323","fastcompany.com":"0.5224","brainpickings.org":"0.5224","hubspot.com":"0.4909","ribbonfarm.com":"0.4617","neilpatel.com":"0.4292","businessinsider.com":"0.4207","lifehacker.com":"0.4171","thesimpledollar.com":"0.4128","weforum.org":"0.4122","creativebloq.com":"0.4114","hbr.org":"0.4111","ted.com":"0.4015","mindful.org":"0.3880","invisionapp.com":"0.3839","linkedin.com":"0.3824","firstround.com":"0.3672","observer.com":"0.3503","psychologytoday.com":"0.3484","qz.com":"0.3467","thebookoflife.org":"0.3395","1843magazine.com":"0.3388","waitbutwhy.com":"0.3034","ycombinator.com":"0.3004","smashingmagazine.com":"0.2880","mic.com":"0.2765","singularityhub.com":"0.2734","thenextweb.com":"0.2723","forbes.com":"0.2639","bigthink.com":"0.2524","wikihow.com":"0.2406","makeuseof.com":"0.2325","mashable.com":"0.2183","quora.com":"0.2018","udemy.com":"0.1918","cnbc.com":"0.1902","bbc.com":"0.1875","huffingtonpost.com":"0.1810","mckinsey.com":"0.1616","nautil.us":"0.1611","25iq.com":"0.1339","sciencedaily.com":"0.1242"},"item_score":0.6},{"id":53173,"url":"https:\/\/getpocket.com\/explore\/item\/3-mental-blocks-that-keep-you-from-doing-what-you-say-you-want-to-do?utm_source=pocket-newtab","domain":"ideas.ted.com","title":"3 Mental Blocks That Keep You From Doing What You Say You Want to Do","excerpt":"The bad news: We all face powerful mental blocks that stop us when we\u2019re trying to achieve our goals. The good news: We can outwit them.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"sneakerheadvc.com":"1.0000","pageflutter.com":"1.0000","dandywithlens.com":"1.0000","workflowy.com":"0.9995","doist.com":"0.9974","tinyrayofsunshine.com":"0.9966","gettingthingsdone.com":"0.9960","bohoberry.com":"0.9960","jkglei.com":"0.9944","writingroutines.com":"0.9938","leankit.com":"0.9934","facilethings.com":"0.9924","littlecoffeefox.com":"0.9904","bestself.co":"0.9887","thedigitalprojectmanager.com":"0.9874","paulminors.com":"0.9845","benjaminhardy.com":"0.9839","positivityblog.com":"0.9829","timemanagementninja.com":"0.9818","productiveflourishing.com":"0.9807","theascent.biz":"0.9798","vunela.com":"0.9797","mindmeister.com":"0.9793","fortelabs.co":"0.9793","writingcooperative.com":"0.9782","nextscientist.com":"0.9771","omnifocus.com":"0.9754","edbatista.com":"0.9753","sumo.com":"0.9749","thefocuscourse.com":"0.9747","nozbe.com":"0.9735","jetpens.com":"0.9734","sparringmind.com":"0.9734","43folders.com":"0.9725","toggl.com":"0.9725","trello.com":"0.9723","boomerangapp.com":"0.9712","rescuetime.com":"0.9709","thecoffeelicious.com":"0.9649","todoist.com":"0.9644","next-action.eu":"0.9639","optinmonster.com":"0.9621","briantracy.com":"0.9617","goinswriter.com":"0.9609","slack.com":"0.9599","intelligentchange.com":"0.9576","alexvermeer.com":"0.9570","developgoodhabits.com":"0.9568","scrumalliance.org":"0.9553","iqmatrix.com":"0.9553","samuelthomasdavies.com":"0.9542","newtonhq.com":"0.9528","smartblogger.com":"0.9527","iamwire.com":"0.9522","blinkist.com":"0.9511","dailystoic.com":"0.9511","asana.com":"0.9508","chasejarvis.com":"0.9490","jamierubin.net":"0.9477","artplusmarketing.com":"0.9473","yesware.com":"0.9471","wrike.com":"0.9468","scaledagileframework.com":"0.9440","productivityist.com":"0.9430","aerogrammestudio.com":"0.9430","stevepavlina.com":"0.9427","buffer.com":"0.9424","nosidebar.com":"0.9423","codewithoutrules.com":"0.9367","asianefficiency.com":"0.9324","heleo.com":"0.9286","thriveglobal.com":"0.9218","brianknapp.me":"0.9167","atlassian.com":"0.9027","dariusforoux.com":"0.8930","themission.co":"0.8837","evernote.com":"0.8764","marcandangel.com":"0.8742","zapier.com":"0.8677","alifeofproductivity.com":"0.8592","garyvaynerchuk.com":"0.8506","success.com":"0.8341","ryanholiday.net":"0.8334","ronjeffries.com":"0.8319","producthunt.com":"0.8311","byrslf.co":"0.8250","nirandfar.com":"0.8163","mindtools.com":"0.8139","thewritepractice.com":"0.8115","michaelhyatt.com":"0.8072","gretchenrubin.com":"0.7994","highexistence.com":"0.7913","raptitude.com":"0.7877","tinybuddha.com":"0.7854","addicted2success.com":"0.7835","jamesclear.com":"0.7775","pickthebrain.com":"0.7770","unstuck.com":"0.7740","women2.com":"0.7720","bakadesuyo.com":"0.7695","nateliason.com":"0.7549","bemorewithless.com":"0.7546","samaltman.com":"0.7525","zenhabits.net":"0.7511","barryoreilly.com":"0.7500","99u.com":"0.7405","iwillteachyoutoberich.com":"0.7372","scotthyoung.com":"0.7197","bestlifeonline.com":"0.7127","calnewport.com":"0.7126","lifehack.org":"0.7013","sivers.org":"0.6931","thoughtcatalog.com":"0.6876","tim.blog":"0.6803","inc.com":"0.6786","becomingminimalist.com":"0.6759","ideapod.com":"0.6709","nngroup.com":"0.6541","signalvnoise.com":"0.6447","entrepreneur.com":"0.6345","paulgraham.com":"0.6254","theladders.com":"0.6254","farnamstreetblog.com":"0.6197","markmanson.net":"0.6191","coach.me":"0.6112","jamesaltucher.com":"0.5922","medium.com":"0.5865","bufferapp.com":"0.5819","themuse.com":"0.5761","thesweetsetup.com":"0.5471","artofmanliness.com":"0.5323","dev.to":"0.5323","fastcompany.com":"0.5224","brainpickings.org":"0.5224","hubspot.com":"0.4909","ribbonfarm.com":"0.4617","neilpatel.com":"0.4292","businessinsider.com":"0.4207","lifehacker.com":"0.4171","thesimpledollar.com":"0.4128","weforum.org":"0.4122","creativebloq.com":"0.4114","hbr.org":"0.4111","ted.com":"0.4015","mindful.org":"0.3880","invisionapp.com":"0.3839","linkedin.com":"0.3824","firstround.com":"0.3672","observer.com":"0.3503","psychologytoday.com":"0.3484","qz.com":"0.3467","thebookoflife.org":"0.3395","1843magazine.com":"0.3388","waitbutwhy.com":"0.3034","ycombinator.com":"0.3004","smashingmagazine.com":"0.2880","mic.com":"0.2765","singularityhub.com":"0.2734","thenextweb.com":"0.2723","forbes.com":"0.2639","bigthink.com":"0.2524","wikihow.com":"0.2406","makeuseof.com":"0.2325","mashable.com":"0.2183","quora.com":"0.2018","udemy.com":"0.1918","cnbc.com":"0.1902","bbc.com":"0.1875","huffingtonpost.com":"0.1810","mckinsey.com":"0.1616","nautil.us":"0.1611","25iq.com":"0.1339","sciencedaily.com":"0.1242"},"item_score":0.58333333333333},{"id":53206,"url":"https:\/\/www.buzzfeednews.com\/article\/ryanmac\/elon-musk-cant-lose?utm_source=pocket-newtab","domain":"buzzfeednews.com","title":"Elon Musk Can\u2019t Lose","excerpt":"Tesla\u2019s billionaire CEO fought a lawsuit over his own bad behavior and won. For the reality-bending entrepreneur, there was no other possible outcome.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580387640","engagement":"","parameter_set":"default","domain_affinities":{"carpeaqua.com":"1.0000","sys-con.com":"1.0000","qubes-os.org":"1.0000","herbsutter.com":"1.0000","c2.com":"1.0000","allthingsdistributed.com":"1.0000","imperialviolet.org":"1.0000","mono-project.com":"1.0000","overclock3d.net":"1.0000","centos.org":"1.0000","khronos.org":"1.0000","trailofbits.com":"1.0000","sublimetext.com":"1.0000","beej.us":"1.0000","loup-vaillant.fr":"1.0000","dxomark.com":"1.0000","pixelbeat.org":"1.0000","counternotions.com":"1.0000","viva64.com":"1.0000","jlongster.com":"1.0000","ptsecurity.com":"1.0000","elcomsoft.com":"1.0000","karl-voit.at":"1.0000","joshondesign.com":"1.0000","matthias-endler.de":"1.0000","bellard.org":"1.0000","righto.com":"1.0000","rsms.me":"1.0000","tomdale.net":"1.0000","stephanboyer.com":"1.0000","jooq.org":"1.0000","benediktmeurer.de":"1.0000","metamarkets.com":"1.0000","adguard.com":"1.0000","tryolabs.com":"1.0000","stephenradford.me":"1.0000","benmccormick.org":"1.0000","thume.ca":"1.0000","programmingisterrible.com":"1.0000","birchtree.me":"1.0000","marmelab.com":"1.0000","ocadotechnology.com":"1.0000","filippo.io":"1.0000","monkeylearn.com":"1.0000","jessfraz.com":"1.0000","kubernetes.io":"1.0000","puri.sm":"1.0000","fuzzing-project.org":"1.0000","hookrace.net":"1.0000","mybridge.co":"1.0000","keras.io":"1.0000","minio.io":"1.0000","saminiir.com":"1.0000","paxos.com":"1.0000","floydhub.com":"1.0000","drivy.engineering":"1.0000","sigmoidal.io":"1.0000","tenso.rs":"1.0000","zipcpu.com":"1.0000","axesslab.com":"1.0000","madewitharkit.com":"1.0000","zeppelin.solutions":"1.0000","digitzbyte.com":"1.0000","productgraveyard.com":"1.0000","jackhiston.com":"1.0000","sdegutis.com":"1.0000","redmondpie.com":"0.9991","archlinux.org":"0.9983","spreadprivacy.com":"0.9977","backblaze.com":"0.9971","osxdaily.com":"0.9968","oleb.net":"0.9959","ben-evans.com":"0.9949","googleprojectzero.blogspot.com":"0.9945","panic.com":"0.9944","tunnelbear.com":"0.9942","bradfieldcs.com":"0.9931","notebookcheck.net":"0.9925","keybase.io":"0.9925","apenwarr.ca":"0.9923","machinelearnings.co":"0.9917","osnews.com":"0.9913","scotthelme.co.uk":"0.9905","chuqui.com":"0.9899","bigchaindb.com":"0.9898","lvguowei.me":"0.9896","macworld.co.uk":"0.9892","icons8.com":"0.9883","rachum.com":"0.9869","anandtech.com":"0.9868","512pixels.net":"0.9863","laptopmag.com":"0.9835","ghacks.net":"0.9832","idownloadblog.com":"0.9797","xda-developers.com":"0.9749","macworld.com":"0.9738","cyberciti.biz":"0.9729","daringfireball.net":"0.9723","windows.com":"0.9679","ubuntu.com":"0.9624","thewindowsclub.com":"0.9611","appleinsider.com":"0.9593","howtogeek.com":"0.9593","tecmint.com":"0.9575","thurrott.com":"0.9575","labnol.org":"0.9526","windowscentral.com":"0.9513","macrumors.com":"0.9511","gsmarena.com":"0.9495","imore.com":"0.9471","9to5mac.com":"0.9458","addictivetips.com":"0.9421","tomsguide.com":"0.9411","infoworld.com":"0.9406","apple.com":"0.9406","tomshardware.com":"0.9390","askubuntu.com":"0.9387","computerworld.com":"0.9379","mspoweruser.com":"0.9378","pcworld.com":"0.9368","macstories.net":"0.9364","cultofmac.com":"0.9358","digitalocean.com":"0.9352","maketecheasier.com":"0.9326","electrek.co":"0.9302","androidauthority.com":"0.9290","microsoft.com":"0.9260","androidcentral.com":"0.9241","beebom.com":"0.9234","highscalability.com":"0.9152","9to5google.com":"0.9033","nvidia.com":"0.9029","pcmag.com":"0.8950","zdnet.com":"0.8891","techradar.com":"0.8860","lifewire.com":"0.8776","wonderhowto.com":"0.8695","phandroid.com":"0.8657","android.com":"0.8657","androidpolice.com":"0.8631","techrepublic.com":"0.8587","stratechery.com":"0.8506","raspberrypi.org":"0.8449","bgr.com":"0.8403","codinghorror.com":"0.8305","gartner.com":"0.8303","github.com":"0.8246","office.com":"0.8230","techhive.com":"0.8195","googleblog.com":"0.8195","oreilly.com":"0.8174","cnet.com":"0.8018","thehackernews.com":"0.7863","makeuseof.com":"0.7838","intel.com":"0.7814","stackoverflow.com":"0.7786","socialmediaexaminer.com":"0.7751","mozilla.org":"0.7750","thewirecutter.com":"0.7711","thesweetsetup.com":"0.7656","hongkiat.com":"0.7635","digitaltrends.com":"0.7613","extremetech.com":"0.7603","moz.com":"0.7503","wpbeginner.com":"0.7453","ieee.org":"0.7440","eff.org":"0.7371","opensource.com":"0.7360","wareable.com":"0.7322","adobe.com":"0.7315","acm.org":"0.7314","searchengineland.com":"0.7288","schneier.com":"0.7239","hootsuite.com":"0.7129","github.io":"0.7071","arstechnica.co.uk":"0.7026","toptal.com":"0.7015","dpreview.com":"0.6997","theverge.com":"0.6911","cbinsights.com":"0.6907","theregister.co.uk":"0.6852","kdnuggets.com":"0.6842","ibm.com":"0.6764","fastcodesign.com":"0.6732","kissmetrics.com":"0.6630","wired.com":"0.6568","venturebeat.com":"0.6565","recode.net":"0.6563","instructables.com":"0.6529","datasciencecentral.com":"0.6394","smashingmagazine.com":"0.6364","techcrunch.com":"0.6332","engadget.com":"0.6300","khanacademy.org":"0.6230","hackaday.com":"0.6214"},"item_score":0.56666666666667},{"id":53212,"url":"https:\/\/www.nytimes.com\/2020\/01\/31\/opinion\/sunday\/olympic-runners-women-qualifiers.html?utm_source=pocket-newtab","domain":"nytimes.com","title":"I Am 35 and Running Faster Than I Ever Thought Possible","excerpt":"My quest to qualify for the Olympic marathon team trials.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580464822","engagement":"","parameter_set":"default","domain_affinities":{"tsn.ca":"1.0000","bloggingtheboys.com":"1.0000","profootballfocus.com":"1.0000","premierleague.com":"1.0000","hoopshype.com":"1.0000","razzball.com":"1.0000","csnchicago.com":"1.0000","fantasypros.com":"1.0000","dallascowboys.com":"1.0000","4for4.com":"1.0000","squawka.com":"1.0000","basketballinsiders.com":"1.0000","football.london":"1.0000","thesportsman.com":"1.0000","csnbayarea.com":"0.9999","celticsblog.com":"0.9998","patspulpit.com":"0.9997","fanragsports.com":"0.9997","arseblog.com":"0.9995","riveraveblues.com":"0.9994","thehockeynews.com":"0.9973","rotoworld.com":"0.9969","footballoutsiders.com":"0.9964","fangraphs.com":"0.9955","football365.com":"0.9944","goal.com":"0.9943","sportsnet.ca":"0.9933","realgm.com":"0.9924","slamonline.com":"0.9917","saturdaydownsouth.com":"0.9910","statsbomb.com":"0.9897","nesn.com":"0.9883","espn.co.uk":"0.9881","espnfc.com":"0.9879","cbssports.com":"0.9872","nfl.com":"0.9868","planetfootball.com":"0.9864","csnphilly.com":"0.9853","thescore.com":"0.9835","nhl.com":"0.9832","mlb.com":"0.9831","foxsports.com":"0.9827","skysports.com":"0.9827","247sports.com":"0.9815","spielverlagerung.com":"0.9811","umaxit.com":"0.9811","sportingnews.com":"0.9810","tennis.com":"0.9766","csnne.com":"0.9764","thisisanfield.com":"0.9724","baseballamerica.com":"0.9697","fansided.com":"0.9684","nbcsports.com":"0.9682","nba.com":"0.9670","mlbtraderumors.com":"0.9657","espn.com":"0.9648","sportsbusinessdaily.com":"0.9590","seccountry.com":"0.9546","si.com":"0.9527","sportsonearth.com":"0.9518","fourfourtwo.com":"0.9483","numberfire.com":"0.9440","hardballtimes.com":"0.9433","theathletic.com":"0.9347","thecomeback.com":"0.9318","beyondtheboxscore.com":"0.9297","rivals.com":"0.9286","thesefootballtimes.co":"0.9285","mmafighting.com":"0.9235","baseballprospectus.com":"0.9229","mmajunkie.com":"0.9085","joeposnanski.com":"0.9081","yardbarker.com":"0.9070","thebiglead.com":"0.9040","mlssoccer.com":"0.9000","theplayerstribune.com":"0.8961","bleacherreport.com":"0.8955","awfulannouncing.com":"0.8942","everydayshouldbesaturday.com":"0.8913","sbnation.com":"0.8864","outsports.com":"0.8802","sporttechie.com":"0.8782","theblizzard.co.uk":"0.8760","thecricketmonthly.com":"0.8608","espncricinfo.com":"0.8507","thesetpieces.com":"0.8383","motorsport.com":"0.8182","victoryjournal.com":"0.7872","cleaningtheglass.com":"0.7868","scout.com":"0.7833","deadspin.com":"0.7580","theundefeated.com":"0.7354","buffalonews.com":"0.7298","cleveland.com":"0.7227","grantland.com":"0.6948","theringer.com":"0.6866","golfdigest.com":"0.6759","masslive.com":"0.6748","jsonline.com":"0.6516","bloodyelbow.com":"0.6510","bostonherald.com":"0.6175","post-gazette.com":"0.5947","star-telegram.com":"0.5818","barstoolsports.com":"0.5818","kansascity.com":"0.5616","twincities.com":"0.5605","phillyvoice.com":"0.5571","sun-sentinel.com":"0.5419","mysanantonio.com":"0.5364","freep.com":"0.5285","detroitnews.com":"0.5205","startribune.com":"0.5149","commercialappeal.com":"0.5066","dailynews.com":"0.4851","mlive.com":"0.4843","yahoo.com":"0.3444","att.net":"0.3408","jamesclear.com":"0.2457","nypost.com":"0.2265","fivethirtyeight.com":"0.1767","msn.com":"0.1637","usatoday.com":"0.1426","dailymail.co.uk":"0.1273","bbc.co.uk":"0.0978","independent.co.uk":"0.0972","outsideonline.com":"0.0901","longreads.com":"0.0672","latimes.com":"0.0625","theguardian.com":"0.0620","esquire.com":"0.0534","time.com":"0.0407"},"item_score":0.55},{"id":53203,"url":"https:\/\/www.bbc.com\/worklife\/article\/20200130-the-life-hack-to-reduce-admin-and-carve-out-downtime?utm_source=pocket-newtab","domain":"bbc.com","title":"How to reduce 'attention residue' in your life","excerpt":"Mundane chores take up our time and headspace. Bundling them into specific time slots might be the ultimate act of self-care.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"1580450400","engagement":"","parameter_set":"default","domain_affinities":{"sneakerheadvc.com":"1.0000","pageflutter.com":"1.0000","dandywithlens.com":"1.0000","workflowy.com":"0.9995","doist.com":"0.9974","tinyrayofsunshine.com":"0.9966","gettingthingsdone.com":"0.9960","bohoberry.com":"0.9960","jkglei.com":"0.9944","writingroutines.com":"0.9938","leankit.com":"0.9934","facilethings.com":"0.9924","littlecoffeefox.com":"0.9904","bestself.co":"0.9887","thedigitalprojectmanager.com":"0.9874","paulminors.com":"0.9845","benjaminhardy.com":"0.9839","positivityblog.com":"0.9829","timemanagementninja.com":"0.9818","productiveflourishing.com":"0.9807","theascent.biz":"0.9798","vunela.com":"0.9797","mindmeister.com":"0.9793","fortelabs.co":"0.9793","writingcooperative.com":"0.9782","nextscientist.com":"0.9771","omnifocus.com":"0.9754","edbatista.com":"0.9753","sumo.com":"0.9749","thefocuscourse.com":"0.9747","nozbe.com":"0.9735","jetpens.com":"0.9734","sparringmind.com":"0.9734","43folders.com":"0.9725","toggl.com":"0.9725","trello.com":"0.9723","boomerangapp.com":"0.9712","rescuetime.com":"0.9709","thecoffeelicious.com":"0.9649","todoist.com":"0.9644","next-action.eu":"0.9639","optinmonster.com":"0.9621","briantracy.com":"0.9617","goinswriter.com":"0.9609","slack.com":"0.9599","intelligentchange.com":"0.9576","alexvermeer.com":"0.9570","developgoodhabits.com":"0.9568","scrumalliance.org":"0.9553","iqmatrix.com":"0.9553","samuelthomasdavies.com":"0.9542","newtonhq.com":"0.9528","smartblogger.com":"0.9527","iamwire.com":"0.9522","blinkist.com":"0.9511","dailystoic.com":"0.9511","asana.com":"0.9508","chasejarvis.com":"0.9490","jamierubin.net":"0.9477","artplusmarketing.com":"0.9473","yesware.com":"0.9471","wrike.com":"0.9468","scaledagileframework.com":"0.9440","productivityist.com":"0.9430","aerogrammestudio.com":"0.9430","stevepavlina.com":"0.9427","buffer.com":"0.9424","nosidebar.com":"0.9423","codewithoutrules.com":"0.9367","asianefficiency.com":"0.9324","heleo.com":"0.9286","thriveglobal.com":"0.9218","brianknapp.me":"0.9167","atlassian.com":"0.9027","dariusforoux.com":"0.8930","themission.co":"0.8837","evernote.com":"0.8764","marcandangel.com":"0.8742","zapier.com":"0.8677","alifeofproductivity.com":"0.8592","garyvaynerchuk.com":"0.8506","success.com":"0.8341","ryanholiday.net":"0.8334","ronjeffries.com":"0.8319","producthunt.com":"0.8311","byrslf.co":"0.8250","nirandfar.com":"0.8163","mindtools.com":"0.8139","thewritepractice.com":"0.8115","michaelhyatt.com":"0.8072","gretchenrubin.com":"0.7994","highexistence.com":"0.7913","raptitude.com":"0.7877","tinybuddha.com":"0.7854","addicted2success.com":"0.7835","jamesclear.com":"0.7775","pickthebrain.com":"0.7770","unstuck.com":"0.7740","women2.com":"0.7720","bakadesuyo.com":"0.7695","nateliason.com":"0.7549","bemorewithless.com":"0.7546","samaltman.com":"0.7525","zenhabits.net":"0.7511","barryoreilly.com":"0.7500","99u.com":"0.7405","iwillteachyoutoberich.com":"0.7372","scotthyoung.com":"0.7197","bestlifeonline.com":"0.7127","calnewport.com":"0.7126","lifehack.org":"0.7013","sivers.org":"0.6931","thoughtcatalog.com":"0.6876","tim.blog":"0.6803","inc.com":"0.6786","becomingminimalist.com":"0.6759","ideapod.com":"0.6709","nngroup.com":"0.6541","signalvnoise.com":"0.6447","entrepreneur.com":"0.6345","paulgraham.com":"0.6254","theladders.com":"0.6254","farnamstreetblog.com":"0.6197","markmanson.net":"0.6191","coach.me":"0.6112","jamesaltucher.com":"0.5922","medium.com":"0.5865","bufferapp.com":"0.5819","themuse.com":"0.5761","thesweetsetup.com":"0.5471","artofmanliness.com":"0.5323","dev.to":"0.5323","fastcompany.com":"0.5224","brainpickings.org":"0.5224","hubspot.com":"0.4909","ribbonfarm.com":"0.4617","neilpatel.com":"0.4292","businessinsider.com":"0.4207","lifehacker.com":"0.4171","thesimpledollar.com":"0.4128","weforum.org":"0.4122","creativebloq.com":"0.4114","hbr.org":"0.4111","ted.com":"0.4015","mindful.org":"0.3880","invisionapp.com":"0.3839","linkedin.com":"0.3824","firstround.com":"0.3672","observer.com":"0.3503","psychologytoday.com":"0.3484","qz.com":"0.3467","thebookoflife.org":"0.3395","1843magazine.com":"0.3388","waitbutwhy.com":"0.3034","ycombinator.com":"0.3004","smashingmagazine.com":"0.2880","mic.com":"0.2765","singularityhub.com":"0.2734","thenextweb.com":"0.2723","forbes.com":"0.2639","bigthink.com":"0.2524","wikihow.com":"0.2406","makeuseof.com":"0.2325","mashable.com":"0.2183","quora.com":"0.2018","udemy.com":"0.1918","cnbc.com":"0.1902","bbc.com":"0.1875","huffingtonpost.com":"0.1810","mckinsey.com":"0.1616","nautil.us":"0.1611","25iq.com":"0.1339","sciencedaily.com":"0.1242"},"item_score":0.53333333333333},{"id":53195,"url":"https:\/\/getpocket.com\/explore\/item\/how-to-remove-cactus-spines-including-ones-stuck-in-your-throat?utm_source=pocket-newtab","domain":"popsci.com","title":"How to Remove Cactus Spines (Including Ones Stuck in Your Throat)","excerpt":"Experts weigh in on a prickly predicament.","image_src":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAA/UlEQVR4nO3RMQ0AMAzAsPIn3d5DsBw2gkiZJWV+B/AyJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQGENiDIkxJMaQmAP4K6zWNUjE4wAAAABJRU5ErkJggg==","published_timestamp":"-62169962400","engagement":"","parameter_set":"default","domain_affinities":{"knowridge.com":"1.0000","dailymedic.info":"0.9998","pharmaceutical-journal.com":"0.9997","startingstrength.com":"0.9992","selfhacked.com":"0.9986","physiqonomics.com":"0.9984","stronglifts.com":"0.9958","examine.com":"0.9948","dailyplug.com":"0.9939","stedavies.com":"0.9937","bengreenfieldfitness.com":"0.9916","muscleandfitness.com":"0.9912","muscleandstrength.com":"0.9912","t-nation.com":"0.9896","precisionnutrition.com":"0.9873","drugs.com":"0.9865","muscleforlife.com":"0.9857","thehealthawareness.com":"0.9834","medicalnewstoday.com":"0.9831","womansworld.com":"0.9821","eatingacademy.com":"0.9813","mayoclinic.org":"0.9810","hopkinsmedicine.org":"0.9806","clevelandclinic.org":"0.9796","thehealthcareblog.com":"0.9790","chriskresser.com":"0.9782","jamanetwork.com":"0.9782","top10homeremedies.com":"0.9773","greenmedinfo.com":"0.9771","intensivedietarymanagement.com":"0.9770","healthline.com":"0.9737","onnit.com":"0.9730","annals.org":"0.9729","active.com":"0.9722","sciencebasedmedicine.org":"0.9709","bodybuilding.com":"0.9707","medicinenet.com":"0.9705","helpguide.org":"0.9701","fda.gov":"0.9692","competitor.com":"0.9668","webmd.com":"0.9654","lww.com":"0.9653","proteinpower.com":"0.9643","robbwolf.com":"0.9641","draxe.com":"0.9632","bulletproof.com":"0.9628","runtastic.com":"0.9605","mercola.com":"0.9599","drweil.com":"0.9588","medicaldaily.com":"0.9582","studyfinds.org":"0.9576","endpts.com":"0.9570","nutritionfacts.org":"0.9555","menshealth.co.uk":"0.9553","stack.com":"0.9546","livestrong.com":"0.9541","mensfitness.com":"0.9540","kajsotala.fi":"0.9537","drhyman.com":"0.9530","women2.com":"0.9523","authoritynutrition.com":"0.9517","curejoy.com":"0.9513","womenshealthmag.com":"0.9510","news-medical.net":"0.9499","nutrition.org":"0.9498","medicalxpress.com":"0.9482","ewg.org":"0.9470","fitnessmagazine.com":"0.9462","menshealth.com":"0.9458","nerdfitness.com":"0.9452","medcitynews.com":"0.9450","health.com":"0.9445","breakingmuscle.com":"0.9426","shape.com":"0.9420","vegan.com":"0.9419","prevention.com":"0.9415","yogajournal.com":"0.9409","everydayhealth.com":"0.9406","runnersworld.com":"0.9401","kevinmd.com":"0.9393","neurosciencenews.com":"0.9387","who.int":"0.9382","ucsf.edu":"0.9371","medpagetoday.com":"0.9352","mosaicscience.com":"0.9341","nejm.org":"0.9323","nhs.uk":"0.9317","eatthis.com":"0.9273","naturallivingideas.com":"0.9265","bmj.com":"0.9264","themighty.com":"0.9260","fitbit.com":"0.9253","marksdailyapple.com":"0.9247","cdc.gov":"0.9245","healthy-holistic-living.com":"0.9232","theheartysoul.com":"0.9226","byrdie.co.uk":"0.9208","intothegloss.com":"0.9199","realfarmacy.com":"0.9140","biomedcentral.com":"0.9132","nih.gov":"0.9125","netdoctor.co.uk":"0.9125","byrdie.com":"0.9118","dailyburn.com":"0.8980","sustainabledish.com":"0.8962","acsh.org":"0.8945","verywell.com":"0.8935","myfitnesspal.com":"0.8853","wellnessmama.com":"0.8823","housebeautiful.co.uk":"0.8816","experiencelife.com":"0.8807","statnews.com":"0.8786","mindful.org":"0.8776","stephanguyenet.com":"0.8762","rodalewellness.com":"0.8758","self.com":"0.8732","theopennotebook.com":"0.8709","bicycling.com":"0.8480","askmen.com":"0.8435","wakeup-world.com":"0.8418","mindbodygreen.com":"0.8410","naturalnews.com":"0.8366","spring.org.uk":"0.8360","dietdoctor.com":"0.8316","wellandgood.com":"0.8313","sciencedaily.com":"0.8229","powerofpositivity.com":"0.8154","greatist.com":"0.8002","upliftconnect.com":"0.7975","rd.com":"0.7928","psychcentral.com":"0.7840","headspace.com":"0.7803","lionsroar.com":"0.7743","ruled.me":"0.7738","collective-evolution.com":"0.7608","ketodietapp.com":"0.7397","additudemag.com":"0.7362","psychologytoday.com":"0.7293","elephantjournal.com":"0.7292","eurekalert.org":"0.7203","rodalesorganiclife.com":"0.7141","futurity.org":"0.7140","popsugar.com":"0.7038","bps.org.uk":"0.6940","brightside.me":"0.6893","plos.org":"0.6695","aarp.org":"0.6670","ideapod.com":"0.6645","goop.com":"0.6381","bigthink.com":"0.6256","mensjournal.com":"0.6255","metro.co.uk":"0.6195","wareable.com":"0.6038","popsci.com":"0.5852","telegraph.co.uk":"0.5784","elitedaily.com":"0.5782","fatherly.com":"0.5727","theeverygirl.com":"0.5662","theladders.com":"0.5595","melmagazine.com":"0.5585","wikihow.com":"0.5559","consumerreports.org":"0.5530","theconversation.com":"0.5453","sciencealert.com":"0.5440","cosmopolitan.com":"0.5406","desiringgod.org":"0.5329","scientificamerican.com":"0.5307","today.com":"0.5302","artofmanliness.com":"0.5212","thesweethome.com":"0.5088","bakadesuyo.com":"0.5075","sciencenews.org":"0.5065","newscientist.com":"0.4991","pickthebrain.com":"0.4922","discovermagazine.com":"0.4915","newatlas.com":"0.4880","forksoverknives.com":"0.4868","iflscience.com":"0.4857","tinybuddha.com":"0.4831","zenhabits.net":"0.4791","qz.com":"0.4662","cheatsheet.com":"0.4635","iwillteachyoutoberich.com":"0.4628","time.com":"0.4519","npr.org":"0.4503","refinery29.com":"0.4498","ted.com":"0.4497","wired.co.uk":"0.4445","coach.me":"0.4216","livescience.com":"0.4073","bustle.com":"0.3934","outsideonline.com":"0.3920","thecut.com":"0.3897","slatestarcodex.com":"0.3864","weforum.org":"0.3862","brainpickings.org":"0.3845","raptitude.com":"0.3843","realsimple.com":"0.3808","onegreenplanet.org":"0.3804","nautil.us":"0.3776","dailymail.co.uk":"0.3707","cookinglight.com":"0.3698","nature.com":"0.3686","1843magazine.com":"0.3581","highexistence.com":"0.3526","markmanson.net":"0.3453","marcandangel.com":"0.3381","lifehack.org":"0.3288","msn.com":"0.3280","bestlifeonline.com":"0.3244","propublica.org":"0.3234","theestablishment.co":"0.3116","thoughtcatalog.com":"0.3016","dariusforoux.com":"0.2946","bbcgoodfood.com":"0.2930","racked.com":"0.2921","success.com":"0.2768","eater.com":"0.2654"},"item_score":0.51666666666667}]}