{"id":8583,"date":"2018-11-08T12:10:02","date_gmt":"2018-11-08T20:10:02","guid":{"rendered":"http:\/\/blog.mozilla.org\/addons\/?p=8583"},"modified":"2018-11-12T10:16:17","modified_gmt":"2018-11-12T18:16:17","slug":"extensions-in-firefox-64","status":"publish","type":"post","link":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/","title":{"rendered":"Extensions in Firefox 64"},"content":{"rendered":"<p>Following the explosion of extension features in Firefox 63, Firefox 64 moved into Beta with a quieter set of capabilities spread across many different areas.<\/p>\n<h2>Extension Management<\/h2>\n<p>The most visible change to extensions comes on the user-facing side of Firefox where the add-ons management page (about:addons) received an upgrade.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-large wp-image-8584\" src=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/new-aom-600x285.png\" alt=\"\" width=\"600\" height=\"285\" srcset=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/new-aom-600x285.png 600w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/new-aom-252x120.png 252w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/new-aom-768x365.png 768w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/new-aom.png 1286w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/>Changes on this page include:<\/p>\n<ul>\n<li>Each extension is shown as a card that can be clicked.<\/li>\n<li>Each card shows the description for the extension along with buttons for Options, Disable and Remove.<\/li>\n<li>The search area at the top is cleaned up.<\/li>\n<li>The page links to the Firefox Preferences page (about:preferences) and that page links back to about:addons, making navigation between the two very easy. \u00a0These links appear in the bottom left corner of each page.<\/li>\n<\/ul>\n<p>These changes are part of an ongoing redesign of about:addons that will make managing extensions and themes within Firefox simpler and more intuitive. You can expect to see additional changes in 2019.<\/p>\n<p>As part of our continuing effort to make sure users are aware of when an extension is controlling some aspect of Firefox, the Notification Permissions window now shows when an extension is controlling the browser\u2019s ability to accept or reject web notification requests.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-large wp-image-8585\" src=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/extension-web-notify-600x554.png\" alt=\"\" width=\"600\" height=\"554\" srcset=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/extension-web-notify-600x554.png 600w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/extension-web-notify-252x233.png 252w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/extension-web-notify.png 723w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>When an extension is installed, the notification popup is now persistently shown off of the main (hamburger) menu. \u00a0This ensures that the notification is always acknowledged by the user and can\u2019t be accidentally dismissed by switching tabs.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-8586\" src=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/install-dh.png\" alt=\"\" width=\"394\" height=\"200\" srcset=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/install-dh.png 394w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/install-dh-252x128.png 252w\" sizes=\"(max-width: 394px) 100vw, 394px\" \/><\/p>\n<p>Finally, extensions can now be removed by right-clicking on an extension\u2019s browser action icon and selecting \u201cRemove Extension\u201d from the resulting context menu.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-8587\" src=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/remove-cm.png\" alt=\"\" width=\"342\" height=\"260\" srcset=\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/remove-cm.png 342w, https:\/\/blog.mozilla.org\/addons\/files\/2018\/11\/remove-cm-252x192.png 252w\" sizes=\"(max-width: 342px) 100vw, 342px\" \/><\/p>\n<h2><a name=\"cm\"><\/a>Even More Context Menu Improvements<\/h2>\n<p>Firefox 63 saw a large number of improvements for extension context menus and, as promised, there are even more improvements in Firefox 64.<\/p>\n<p>The biggest change is a new API that can be called from the <code>contextmenu<\/code> DOM event to set a custom context menu in extension pages. \u00a0This API, <code>browser.menus.overrideContext()<\/code>, allows extensions to hide all default Firefox menu items in favor of providing a custom context menu UI. \u00a0This context menu can consist of multiple top-level menu items from the extension, and may optionally include tab or bookmark context menu items from other extensions.<\/p>\n<p>To use the new API, you must declare the <code>menus<\/code> and the brand new <code>menus.overrideContext<\/code> permission. Additionally, to include context menus from other extensions in the tab or bookmarks contexts, you must also declare the <code>tabs<\/code> or <code>bookmarks<\/code> permissions, respectively.<\/p>\n<p>The API is still being documented on MDN at the time of this writing, but the API takes a <code>contextOptions<\/code> object as a parameter, which includes the following values:<\/p>\n<ul>\n<li><code>showDefaults<\/code>: boolean that indicates whether to include default Firefox menu items in the context menu (defaults to false)<\/li>\n<li><code>context<\/code>: optional parameter that indicates the <code>ContextType<\/code> to override to allow menu items from other extensions in this context menu. Currently, only <code>bookmark<\/code> and <code>tab<\/code> are supported. <code>showDefaults<\/code> cannot be used with this option.<\/li>\n<li><code>bookmarkId<\/code>: required when context is <code>bookmark<\/code>. Requires <code>bookmarks<\/code> permission.<\/li>\n<li><code>tabId<\/code>: required when context is <code>tab<\/code>. Requires <code>tabs<\/code> permission.<\/li>\n<\/ul>\n<p>While waiting for the MDN documentation to go live, I would highly encourage you to check out the <a href=\"https:\/\/piro.sakura.ne.jp\/latest\/blosxom\/mozilla\/xul\/2018-10-14_override-context-on-fx64.htm#topic2018-10-14_override-context-on-fx64\">terrific blog post<\/a> by <a href=\"https:\/\/mozillians.org\/u\/Piro\/\">Yuki &#8220;Piro&#8221; Hiroshi<\/a> that covers usage of the new API in great detail.<\/p>\n<p>Other improvements to extension context menus include:<\/p>\n<ul>\n<li><code>browser.menus.update()<\/code> now allows extensions to <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1414566\">update an icon<\/a> without having to delete and recreate the menu item.<\/li>\n<li><code>menus.create()<\/code> and <code>menus.update()<\/code> now support a <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1416839\">viewTypes<\/a> property. \u00a0This is a list of view types that specifies where the menu item will be shown and can include <code>tab<\/code>, <code>popup<\/code> (pageAction\/browserAction) or <code>sidebar<\/code>. It defaults to any view, including those without a viewType.<\/li>\n<li>The <code>menus.onShown<\/code> and <code>menus.onClicked<\/code> events now include the viewType described above as part of their info object so extensions can determine the type of view where the menu was shown or clicked.<\/li>\n<li>The <code>menus.onClicked<\/code> event also added a <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1469148\">button property<\/a> to indicate which mouse button initiated the click (left, middle, right).<\/li>\n<\/ul>\n<h2>Minor Improvements in Many Areas<\/h2>\n<p>In addition to the extension management in Firefox and the context menu work, many smaller improvements were made throughout the WebExtension API.<\/p>\n<h3>Page Actions<\/h3>\n<ul>\n<li>A new, optional manifest property for page actions called \u2018<a href=\"https:\/\/developer.mozilla.org\/docs\/Mozilla\/Add-ons\/WebExtensions\/manifest.json\/page_action#Syntax\">pinned<\/a>\u2019 has been added. \u00a0It specifies whether or not the page action should appear in the location bar by default when the user installs the extension (default is true).<\/li>\n<\/ul>\n<h3>Tabs<\/h3>\n<ul>\n<li>Extensions can now access the <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1396684\">attention property<\/a> on tabs, and can set the <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1479129\">highlighted property<\/a> from browser.tabs.update().<\/li>\n<li>An <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1489814\">option was added to tabs.highlight()<\/a> to prevent it from populating the returned window. \u00a0This can have important performance benefits.<\/li>\n<\/ul>\n<h3>Content Scripts<\/h3>\n<ul>\n<li>Content scripts can now <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1484980\">read<\/a> from a &lt;canvas&gt; that they have modified.<\/li>\n<\/ul>\n<h3>Themes<\/h3>\n<ul>\n<li>Themes can now change the <a href=\"https:\/\/developer.mozilla.org\/docs\/Mozilla\/Add-ons\/WebExtensions\/manifest.json\/theme#colors\">sidebar border color<\/a>.<\/li>\n<\/ul>\n<h3>Private Browsing<\/h3>\n<ul>\n<li>On Android, fixed an issue where browser action popups opened from private browsing tabs now <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1493426\">also open as private windows<\/a>.<\/li>\n<li>Along similar lines, <code>tabs.create()<\/code> and <code>windows.create()<\/code> now <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1488914\">open the about:privatebrowsing<\/a> page instead of about:newtab.<\/li>\n<\/ul>\n<h3>Keyboard Shortcuts<\/h3>\n<ul>\n<li>Keys on the number pad may now be used for extension <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1424708\">keyboard shortcuts<\/a>.<\/li>\n<\/ul>\n<h3>Dev Tools<\/h3>\n<ul>\n<li>Extensions can now create devtools panel sidebars and use the new <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1398734\">setPage() API<\/a> to embed an extension page inside the devtools inspector sidebar.<\/li>\n<\/ul>\n<h3>Misc \/ Bug Fixes<\/h3>\n<ul>\n<li><code>browser.search.search()<\/code> API \u00a0no longer requires user input in order to be called. \u00a0This makes the API much more useful, especially in asynchronous event listeners. \u00a0This feature was also uplifted to Firefox 63.<\/li>\n<li>Fixed the <code>identity.launchWebAuthFlow()<\/code> API so that the <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1494328\">redirect_uri parameter is no longer mandatory<\/a>. \u00a0This fixes some OAuth services that require the redirect_uri be configured on the service.<\/li>\n<li>Fixed an issue so that the location bar focus is now <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1485307\">handled properly<\/a> when extensions open new tabs.<\/li>\n<li>Alarms created with a time that occurs in the past <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1478694\">now fire immediately<\/a>, instead of being ignored.<\/li>\n<li><code>port.onMessage<\/code> is now <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1488105\">properly fired in content scripts from non-tabs locations<\/a> (sidebar, extension popup views)<\/li>\n<li>The <a href=\"https:\/\/bugzilla.mozilla.org\/show_bug.cgi?id=1463487\">filename from the download API<\/a> is now properly decoded.<\/li>\n<\/ul>\n<h2>Thank You<\/h2>\n<p>A total of <a href=\"https:\/\/bugzilla.mozilla.org\/buglist.cgi?f1=target_milestone&amp;list_id=14404452&amp;o1=equals&amp;resolution=FIXED&amp;query_based_on=WebExtensions%20Fixed%20in%20Version&amp;query_format=advanced&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;v1=mozilla64&amp;product=WebExtensions&amp;known_name=WebExtensions%20Fixed%20in%20Version\">73 features and improvements<\/a> landed as part of Firefox 64. Volunteer contributors were a huge part of this release and a tremendous thank you goes out to our community, including: <a href=\"https:\/\/mozillians.org\/Oriol\/\">Oriol Brufau<\/a>, <a href=\"https:\/\/mozillians.org\/u\/zombie\/\">Tomislav Jovanovic<\/a>, <a href=\"https:\/\/mozillians.org\/championshuttler\/\">Shivam Singhal<\/a>, <a href=\"https:\/\/mozillians.org\/ntim\/\">Tim Nguyen<\/a>, <a href=\"https:\/\/mozillians.org\/arshadkazmi42\/\">Arshad Kazmi<\/a>, <a href=\"https:\/\/mozillians.org\/inspiro\/\">Divyansh Sharma<\/a>, <a href=\"https:\/\/mozillians.org\/evilpie\/\">Tom Schuster<\/a>, <a href=\"https:\/\/mozillians.org\/tb120\/\">Tim B<\/a>, <a href=\"https:\/\/mozillians.org\/tushararora\/\">Tushar Arora<\/a>, <a href=\"https:\/\/mozillians.org\/prathiksha\/\">Prathiksha Guruprasad<\/a>. It is the combined efforts of Mozilla and our amazing community that make Firefox a truly unique product. If you are interested in contributing to the WebExtensions ecosystem, please take a look at our <a href=\"https:\/\/wiki.mozilla.org\/Add-ons\/Contribute\">wiki<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Following the explosion of extension features in Firefox 63, Firefox 64 moved into Beta with a quieter set of capabilities spread across many different areas. Extension Management The most visible &hellip; <a class=\"go\" href=\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/\">Read more<\/a><\/p>\n","protected":false},"author":1526,"featured_media":8388,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[44,227,551,278886],"tags":[278873,304458,278875,6743,278871],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Extensions in Firefox 64 - Mozilla Add-ons Community Blog<\/title>\n<meta name=\"description\" content=\"In addition to improved extension management and additional context menu options, many smaller improvements were made throughout the WebExtension API.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike Conca\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/\",\"url\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/\",\"name\":\"Extensions in Firefox 64 - Mozilla Add-ons Community Blog\",\"isPartOf\":{\"@id\":\"https:\/\/blog.mozilla.org\/addons\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/01\/puzzle-1746563_640.png\",\"datePublished\":\"2018-11-08T20:10:02+00:00\",\"dateModified\":\"2018-11-12T18:16:17+00:00\",\"author\":{\"@id\":\"https:\/\/blog.mozilla.org\/addons\/#\/schema\/person\/e06b9ebc82832ecd9f04e7dd59c65325\"},\"description\":\"In addition to improved extension management and additional context menu options, many smaller improvements were made throughout the WebExtension API.\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#primaryimage\",\"url\":\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/01\/puzzle-1746563_640.png\",\"contentUrl\":\"https:\/\/blog.mozilla.org\/addons\/files\/2018\/01\/puzzle-1746563_640.png\",\"width\":640,\"height\":640,\"caption\":\"Firefox Extensions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.mozilla.org\/addons\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Extensions in Firefox 64\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.mozilla.org\/addons\/#website\",\"url\":\"https:\/\/blog.mozilla.org\/addons\/\",\"name\":\"Mozilla Add-ons Community Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.mozilla.org\/addons\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.mozilla.org\/addons\/#\/schema\/person\/e06b9ebc82832ecd9f04e7dd59c65325\",\"name\":\"Mike Conca\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.mozilla.org\/addons\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/04780e375a532aeb20ec1365ce163109?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/04780e375a532aeb20ec1365ce163109?s=96&d=mm&r=g\",\"caption\":\"Mike Conca\"},\"description\":\"Mike Conca is the Group Product Manager for the Firefox Web Platform, leading the product team responsible for the core web technologies in Firefox including JavaScript, DOM Web API, WebAssembly, storage, layout, media, and graphics.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/mconca\/\",\"https:\/\/x.com\/MikeConca\"],\"url\":\"https:\/\/blog.mozilla.org\/addons\/author\/mconcamozilla-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Extensions in Firefox 64 - Mozilla Add-ons Community Blog","description":"In addition to improved extension management and additional context menu options, many smaller improvements were made throughout the WebExtension API.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/","twitter_misc":{"Written by":"Mike Conca","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/","url":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/","name":"Extensions in Firefox 64 - Mozilla Add-ons Community Blog","isPartOf":{"@id":"https:\/\/blog.mozilla.org\/addons\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#primaryimage"},"image":{"@id":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.mozilla.org\/addons\/files\/2018\/01\/puzzle-1746563_640.png","datePublished":"2018-11-08T20:10:02+00:00","dateModified":"2018-11-12T18:16:17+00:00","author":{"@id":"https:\/\/blog.mozilla.org\/addons\/#\/schema\/person\/e06b9ebc82832ecd9f04e7dd59c65325"},"description":"In addition to improved extension management and additional context menu options, many smaller improvements were made throughout the WebExtension API.","breadcrumb":{"@id":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#primaryimage","url":"https:\/\/blog.mozilla.org\/addons\/files\/2018\/01\/puzzle-1746563_640.png","contentUrl":"https:\/\/blog.mozilla.org\/addons\/files\/2018\/01\/puzzle-1746563_640.png","width":640,"height":640,"caption":"Firefox Extensions"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.mozilla.org\/addons\/2018\/11\/08\/extensions-in-firefox-64\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.mozilla.org\/addons\/"},{"@type":"ListItem","position":2,"name":"Extensions in Firefox 64"}]},{"@type":"WebSite","@id":"https:\/\/blog.mozilla.org\/addons\/#website","url":"https:\/\/blog.mozilla.org\/addons\/","name":"Mozilla Add-ons Community Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.mozilla.org\/addons\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.mozilla.org\/addons\/#\/schema\/person\/e06b9ebc82832ecd9f04e7dd59c65325","name":"Mike Conca","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.mozilla.org\/addons\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/04780e375a532aeb20ec1365ce163109?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/04780e375a532aeb20ec1365ce163109?s=96&d=mm&r=g","caption":"Mike Conca"},"description":"Mike Conca is the Group Product Manager for the Firefox Web Platform, leading the product team responsible for the core web technologies in Firefox including JavaScript, DOM Web API, WebAssembly, storage, layout, media, and graphics.","sameAs":["https:\/\/www.linkedin.com\/in\/mconca\/","https:\/\/x.com\/MikeConca"],"url":"https:\/\/blog.mozilla.org\/addons\/author\/mconcamozilla-com\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/posts\/8583"}],"collection":[{"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/users\/1526"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/comments?post=8583"}],"version-history":[{"count":0,"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/posts\/8583\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/media\/8388"}],"wp:attachment":[{"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/media?parent=8583"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/categories?post=8583"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.mozilla.org\/addons\/wp-json\/wp\/v2\/tags?post=8583"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}