mozilla / addons

☂ Umbrella repository for Mozilla Addons ✨
Other
125 stars 41 forks source link

Browse API response mimetype is incorrect for AndroidADBPlus #6958

Closed kumar303 closed 3 years ago

kumar303 commented 5 years ago

Describe the problem and steps to reproduce it:

What happened?

There is no syntax highlighting because the mimetype of this file entry is text/x-c

What did you expect to happen?

There should be syntax highlighting since this is a JavaScript file.

Anything else we should know?

Example response ``` { "id": 1532144, "channel": "listed", "compatibility": { "firefox": { "min": "48.0", "max": "*" }, "android": { "min": "48.0", "max": "*" } }, "edit_url": "https://addons-dev.allizom.org/en-US/developers/addon/androidadbplus23/versions/1532144", "is_strict_compatibility_enabled": false, "license": { "id": 3338, "is_custom": false, "name": null, "text": { "en-US": "This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/." }, "url": "http://www.mozilla.org/MPL/2.0/" }, "release_notes": null, "reviewed": "2019-07-04T08:10:11Z", "version": "1.13.2", "file": { "id": 252861, "created": "2017-05-10T12:48:35Z", "hash": "sha256:55c9887fab92c52c94291158f18b66179bab8705ca6a454f317e41e51e290ccd", "is_restart_required": false, "is_webextension": true, "is_mozilla_signed_extension": false, "platform": "all", "size": 559267, "status": "public", "url": "https://addons-dev.allizom.org/firefox/downloads/file/252861/androidadbplus-1.13.2-an+fx.xpi?src=", "permissions": [ "tabs", "http://*/*", "https://*/*", "contextMenus", "webRequest", "webRequestBlocking", "webNavigation", "storage", "unlimitedStorage", "notifications" ], "content": "/*\n * This file is part of Adblock Plus ,\n * Copyright (C) 2006-2016 Eyeo GmbH\n *\n * Adblock Plus is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License version 3 as\n * published by the Free Software Foundation.\n *\n * Adblock Plus is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with Adblock Plus. If not, see .\n */\n\n\"use strict\";\n\n{\n var ext = ext || require(\"ext_background\");\n\n const {port} = require(\"messaging\");\n const {Prefs} = require(\"prefs\");\n const {Utils} = require(\"utils\");\n const {FilterStorage} = require(\"filterStorage\");\n const {FilterNotifier} = require(\"filterNotifier\");\n const {defaultMatcher} = require(\"matcher\");\n const {ElemHideEmulation} = require(\"elemHideEmulation\");\n const {Notification: NotificationStorage} = require(\"notification\");\n\n const {Filter, BlockingFilter, RegExpFilter} = require(\"filterClasses\");\n const {Synchronizer} = require(\"synchronizer\");\n\n const info = require(\"info\");\n const {Subscription,\n DownloadableSubscription,\n SpecialSubscription} = require(\"subscriptionClasses\");\n\n // Some modules doesn't exist on Firefox. Moreover,\n // require() throws an exception on Firefox in that case.\n // However, try/catch causes the whole function to to be\n // deoptimized on V8. So we wrap it into another function.\n function tryRequire(module)\n {\n try\n {\n return require(module);\n }\n catch (e)\n {\n return null;\n }\n }\n\n function convertObject(keys, obj)\n {\n let result = {};\n for (let key of keys)\n {\n if (key in obj)\n result[key] = obj[key];\n }\n return result;\n }\n\n function convertSubscription(subscription)\n {\n let obj = convertObject([\"disabled\", \"downloadStatus\", \"homepage\",\n \"lastDownload\", \"title\", \"url\"], subscription);\n obj.isDownloading = Synchronizer.isExecuting(subscription.url);\n return obj;\n }\n\n let convertFilter = convertObject.bind(null, [\"text\"]);\n\n let changeListeners = new ext.PageMap();\n let listenedPreferences = Object.create(null);\n let listenedFilterChanges = Object.create(null);\n let messageTypes = {\n \"app\": \"app.respond\",\n \"filter\": \"filters.respond\",\n \"pref\": \"prefs.respond\",\n \"subscription\": \"subscriptions.respond\"\n };\n\n function sendMessage(type, action)\n {\n let pages = changeListeners.keys();\n if (pages.length == 0)\n return;\n\n let args = [];\n for (let i = 2; i < arguments.length; i++)\n {\n let arg = arguments[i];\n if (arg instanceof Subscription)\n args.push(convertSubscription(arg));\n else if (arg instanceof Filter)\n args.push(convertFilter(arg));\n else\n args.push(arg);\n }\n\n for (let page of pages)\n {\n let filters = changeListeners.get(page);\n let actions = filters[type];\n if (actions && actions.indexOf(action) != -1)\n {\n page.sendMessage({\n type: messageTypes[type],\n action: action,\n args: args\n });\n }\n }\n }\n\n function addFilterListeners(type, actions)\n {\n for (let action of actions)\n {\n let name;\n if (type == \"filter\" && action == \"loaded\")\n name = \"load\";\n else\n name = type + \".\" + action;\n\n if (!(name in listenedFilterChanges))\n {\n listenedFilterChanges[name] = null;\n FilterNotifier.on(name, function()\n {\n let args = [type, action];\n for (let arg of arguments)\n args.push(arg);\n sendMessage.apply(null, args);\n });\n }\n }\n }\n\n function getListenerFilters(page)\n {\n let listenerFilters = changeListeners.get(page);\n if (!listenerFilters)\n {\n listenerFilters = Object.create(null);\n changeListeners.set(page, listenerFilters);\n }\n return listenerFilters;\n }\n\n port.on(\"app.get\", (message, sender) =>\n {\n if (message.what == \"issues\")\n {\n let subscriptionInit = tryRequire(\"subscriptionInit\");\n return {\n filterlistsReinitialized: subscriptionInit ? subscriptionInit.reinitialized : false\n };\n }\n\n if (message.what == \"doclink\")\n return Utils.getDocLink(message.link);\n\n if (message.what == \"localeInfo\")\n {\n let bidiDir;\n if (\"chromeRegistry\" in Utils)\n bidiDir = Utils.chromeRegistry.isLocaleRTL(\"adblockplus\") ? \"rtl\" : \"ltr\";\n else\n bidiDir = ext.i18n.getMessage(\"@@bidi_dir\");\n\n return {locale: Utils.appLocale, bidiDir: bidiDir};\n }\n\n if (message.what == \"features\")\n {\n return {\n devToolsPanel: info.platform == \"chromium\"\n };\n }\n\n return info[message.what];\n });\n\n port.on(\"app.listen\", (message, sender) =>\n {\n getListenerFilters(sender.page).app = message.filter;\n });\n\n port.on(\"app.open\", (message, sender) =>\n {\n if (message.what == \"options\")\n ext.showOptions();\n });\n\n port.on(\"filters.add\", (message, sender) =>\n {\n let result = require(\"filterValidation\").parseFilter(message.text);\n let errors = [];\n if (result.error)\n errors.push(result.error.toString());\n else if (result.filter)\n FilterStorage.addFilter(result.filter);\n\n return errors;\n });\n\n port.on(\"filters.blocked\", (message, sender) =>\n {\n let filter = defaultMatcher.matchesAny(message.url,\n RegExpFilter.typeMap[message.requestType], message.docDomain,\n message.thirdParty);\n\n return filter instanceof BlockingFilter;\n });\n\n port.on(\"filters.get\", (message, sender) =>\n {\n if (message.what == \"elemhideemulation\")\n {\n let filters = [];\n const {checkWhitelisted} = require(\"whitelisting\");\n\n if (Prefs.enabled && !checkWhitelisted(sender.page, sender.frame,\n RegExpFilter.typeMap.DOCUMENT |\n RegExpFilter.typeMap.ELEMHIDE))\n {\n let hostname = sender.frame.url.hostname;\n filters = ElemHideEmulation.getRulesForDomain(hostname);\n filters = filters.map(filter =>\n {\n return {\n selector: filter.selector,\n text: filter.text\n };\n });\n }\n return filters;\n }\n\n let subscription = Subscription.fromURL(message.subscriptionUrl);\n if (!subscription)\n return [];\n\n return subscription.filters.map(convertFilter);\n });\n\n port.on(\"filters.importRaw\", (message, sender) =>\n {\n let result = require(\"filterValidation\").parseFilters(message.text);\n let errors = [];\n for (let error of result.errors)\n {\n if (error.type != \"unexpected-filter-list-header\")\n errors.push(error.toString());\n }\n\n if (errors.length > 0)\n return errors;\n\n let seenFilter = Object.create(null);\n for (let filter of result.filters)\n {\n FilterStorage.addFilter(filter);\n seenFilter[filter.text] = null;\n }\n\n if (!message.removeExisting)\n return errors;\n\n for (let subscription of FilterStorage.subscriptions)\n {\n if (!(subscription instanceof SpecialSubscription))\n continue;\n\n for (let j = subscription.filters.length - 1; j >= 0; j--)\n {\n let filter = subscription.filters[j];\n if (/^@@\\|\\|([^\\/:]+)\\^\\$document$/.test(filter.text))\n continue;\n\n if (!(filter.text in seenFilter))\n FilterStorage.removeFilter(filter);\n }\n }\n\n return errors;\n });\n\n port.on(\"filters.listen\", (message, sender) =>\n {\n getListenerFilters(sender.page).filter = message.filter;\n addFilterListeners(\"filter\", message.filter);\n });\n\n port.on(\"filters.remove\", (message, sender) =>\n {\n let filter = Filter.fromText(message.text);\n let subscription = null;\n if (message.subscriptionUrl)\n subscription = Subscription.fromURL(message.subscriptionUrl);\n\n if (!subscription)\n FilterStorage.removeFilter(filter);\n else\n FilterStorage.removeFilter(filter, subscription, message.index);\n });\n\n port.on(\"prefs.get\", (message, sender) =>\n {\n return Prefs[message.key];\n });\n\n port.on(\"prefs.listen\", (message, sender) =>\n {\n getListenerFilters(sender.page).pref = message.filter;\n for (let preference of message.filter)\n {\n if (!(preference in listenedPreferences))\n {\n listenedPreferences[preference] = null;\n Prefs.on(preference, () =>\n {\n sendMessage(\"pref\", preference, Prefs[preference]);\n });\n }\n }\n });\n\n port.on(\"prefs.toggle\", (message, sender) =>\n {\n if (message.key == \"notifications_ignoredcategories\")\n NotificationStorage.toggleIgnoreCategory(\"*\");\n else\n Prefs[message.key] = !Prefs[message.key];\n });\n\n port.on(\"subscriptions.add\", (message, sender) =>\n {\n let subscription = Subscription.fromURL(message.url);\n if (\"title\" in message)\n subscription.title = message.title;\n if (\"homepage\" in message)\n subscription.homepage = message.homepage;\n\n if (message.confirm)\n {\n ext.showOptions(() =>\n {\n sendMessage(\"app\", \"addSubscription\", subscription);\n });\n }\n else\n {\n subscription.disabled = false;\n FilterStorage.addSubscription(subscription);\n\n if (subscription instanceof DownloadableSubscription && !subscription.lastDownload)\n Synchronizer.execute(subscription);\n }\n });\n\n port.on(\"subscriptions.get\", (message, sender) =>\n {\n let subscriptions = FilterStorage.subscriptions.filter(s =>\n {\n if (message.ignoreDisabled && s.disabled)\n return false;\n if (s instanceof DownloadableSubscription && message.downloadable)\n return true;\n if (s instanceof SpecialSubscription && message.special)\n return true;\n return false;\n });\n\n return subscriptions.map(convertSubscription);\n });\n\n port.on(\"subscriptions.listen\", (message, sender) =>\n {\n getListenerFilters(sender.page).subscription = message.filter;\n addFilterListeners(\"subscription\", message.filter);\n });\n\n port.on(\"subscriptions.remove\", (message, sender) =>\n {\n let subscription = Subscription.fromURL(message.url);\n if (subscription.url in FilterStorage.knownSubscriptions)\n FilterStorage.removeSubscription(subscription);\n });\n\n port.on(\"subscriptions.toggle\", (message, sender) =>\n {\n let subscription = Subscription.fromURL(message.url);\n if (subscription.url in FilterStorage.knownSubscriptions)\n {\n if (subscription.disabled || message.keepInstalled)\n subscription.disabled = !subscription.disabled;\n else\n FilterStorage.removeSubscription(subscription);\n }\n else\n {\n subscription.disabled = false;\n subscription.title = message.title;\n subscription.homepage = message.homepage;\n FilterStorage.addSubscription(subscription);\n if (!subscription.lastDownload)\n Synchronizer.execute(subscription);\n }\n });\n\n port.on(\"subscriptions.update\", (message, sender) =>\n {\n let subscriptions = message.url ? [Subscription.fromURL(message.url)] :\n FilterStorage.subscriptions;\n for (let subscription of subscriptions)\n {\n if (subscription instanceof DownloadableSubscription)\n Synchronizer.execute(subscription, true);\n }\n });\n}\n", "entries": { "META-INF": { "depth": 0, "filename": "META-INF", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "META-INF", "size": null, "modified": "2019-07-04T08:10:28Z" }, "META-INF/cose.manifest": { "depth": 1, "filename": "cose.manifest", "sha256": "af87d4a844a46e62b74f57ccf26b59b5dc43250584a38b57cbd4e189754b2322", "mime_category": "binary", "mimetype": "application/x-ms-manifest", "path": "META-INF/cose.manifest", "size": 25180, "modified": "2019-07-04T08:10:28Z" }, "META-INF/cose.sig": { "depth": 1, "filename": "cose.sig", "sha256": "2d7219cdb9a576a38b99b5c75f6eb15a57d00501d1e8ec0cb298a57c65f43c9f", "mime_category": "binary", "mimetype": "application/octet-stream", "path": "META-INF/cose.sig", "size": 3128, "modified": "2019-07-04T08:10:28Z" }, "META-INF/manifest.mf": { "depth": 1, "filename": "manifest.mf", "sha256": "42f21dfab72afcd55f0f1355dce6324b3a117492ec842533bad060f104de2840", "mime_category": "text", "mimetype": "text/plain", "path": "META-INF/manifest.mf", "size": 25501, "modified": "2019-07-04T08:10:28Z" }, "META-INF/mozilla.rsa": { "depth": 1, "filename": "mozilla.rsa", "sha256": "ec1471cf175f539c96454af44c6c2f3b2a9653e3ebe8d30af672043b426b75d8", "mime_category": "binary", "mimetype": "application/octet-stream", "path": "META-INF/mozilla.rsa", "size": 4341, "modified": "2019-07-04T08:10:28Z" }, "META-INF/mozilla.sf": { "depth": 1, "filename": "mozilla.sf", "sha256": "6d7bf01a2932d32277590c3b3c22a31fa92987b00a2be081d858bbf4ccad401e", "mime_category": "text", "mimetype": "text/plain", "path": "META-INF/mozilla.sf", "size": 144, "modified": "2019-07-04T08:10:28Z" }, "_locales": { "depth": 0, "filename": "_locales", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/am": { "depth": 1, "filename": "am", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/am", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/am/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "790bce1cb14e56bd991ae82363df3e0308004361c0d872d880e027d1a85cd023", "mime_category": "text", "mimetype": "application/json", "path": "_locales/am/messages.json", "size": 1595, "modified": "2019-07-04T08:10:28Z" }, "_locales/ar": { "depth": 1, "filename": "ar", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ar", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ar/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "76bfa62a6f41d2f65a1557393e3a7f1073235d364fb5a95cd6d86410fad0208c", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ar/messages.json", "size": 12904, "modified": "2019-07-04T08:10:28Z" }, "_locales/bg": { "depth": 1, "filename": "bg", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/bg", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/bg/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "3a01768ad9c3129d4f651361530998592bfc248262feedde832d604429906301", "mime_category": "text", "mimetype": "application/json", "path": "_locales/bg/messages.json", "size": 13903, "modified": "2019-07-04T08:10:28Z" }, "_locales/bn": { "depth": 1, "filename": "bn", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/bn", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/bn/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "f5e30b12ffc9000ced0782f8af70cf72304aeaf86026024d18c967c695fb76f3", "mime_category": "text", "mimetype": "application/json", "path": "_locales/bn/messages.json", "size": 12731, "modified": "2019-07-04T08:10:28Z" }, "_locales/ca": { "depth": 1, "filename": "ca", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ca", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ca/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "d01a252f8b4142e652ef3c25cb0c2035b9d63cc0c7f446904c6fe07f36b21e6e", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ca/messages.json", "size": 11123, "modified": "2019-07-04T08:10:28Z" }, "_locales/cs": { "depth": 1, "filename": "cs", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/cs", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/cs/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "b7eb8ca010863f71dce768acb5b52bd1533f801441b00d125e0642053be48cfd", "mime_category": "text", "mimetype": "application/json", "path": "_locales/cs/messages.json", "size": 11142, "modified": "2019-07-04T08:10:28Z" }, "_locales/da": { "depth": 1, "filename": "da", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/da", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/da/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "d787fb8b6ba567bd901634360470f437efbb8c36a6498a1d95d128db8d9d4d39", "mime_category": "text", "mimetype": "application/json", "path": "_locales/da/messages.json", "size": 10343, "modified": "2019-07-04T08:10:28Z" }, "_locales/de": { "depth": 1, "filename": "de", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/de", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/de/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "1c13a02e05dd45864f1958138c4524ec223c81b2ddd54f525ca560745c092fd4", "mime_category": "text", "mimetype": "application/json", "path": "_locales/de/messages.json", "size": 11259, "modified": "2019-07-04T08:10:28Z" }, "_locales/el": { "depth": 1, "filename": "el", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/el", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/el/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "09462a2aeeb06cfc2af42c88d394d99a3f75f77cafc4bfd80c58aefff6b2d701", "mime_category": "text", "mimetype": "application/json", "path": "_locales/el/messages.json", "size": 15208, "modified": "2019-07-04T08:10:28Z" }, "_locales/en_GB": { "depth": 1, "filename": "en_GB", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/en_GB", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/en_GB/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "147a3ad101bf6a0ae7f975d39573db4a64d0df541f7e5381a501dc18596677da", "mime_category": "text", "mimetype": "application/json", "path": "_locales/en_GB/messages.json", "size": 8285, "modified": "2019-07-04T08:10:28Z" }, "_locales/en_US": { "depth": 1, "filename": "en_US", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/en_US", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/en_US/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "2bc7cceee040346ae99538ad0bc21bdcfb73b5e7efea7a41e56c3c0eb5149e8d", "mime_category": "text", "mimetype": "application/json", "path": "_locales/en_US/messages.json", "size": 11297, "modified": "2019-07-04T08:10:28Z" }, "_locales/es": { "depth": 1, "filename": "es", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/es", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/es/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "b5546cf1b61392084abbad39be783682447e20ae0aa671301a06cbf842e86fee", "mime_category": "text", "mimetype": "application/json", "path": "_locales/es/messages.json", "size": 10983, "modified": "2019-07-04T08:10:28Z" }, "_locales/es_419": { "depth": 1, "filename": "es_419", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/es_419", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/es_419/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "408897055f3acf4a77eba19735fa631ea9cad59796e05f91a15e0fe28d16a9cf", "mime_category": "text", "mimetype": "application/json", "path": "_locales/es_419/messages.json", "size": 11108, "modified": "2019-07-04T08:10:28Z" }, "_locales/et": { "depth": 1, "filename": "et", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/et", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/et/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "803d54e0c0a0b36d307ca867c2b2fa884f75707a66b60c1cfb88967ed85b7cdb", "mime_category": "text", "mimetype": "application/json", "path": "_locales/et/messages.json", "size": 9559, "modified": "2019-07-04T08:10:28Z" }, "_locales/fa": { "depth": 1, "filename": "fa", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/fa", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/fa/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "f4fedfc6565bac72ba63824444135a6e7538c5bde6f27456979700e718796a09", "mime_category": "text", "mimetype": "application/json", "path": "_locales/fa/messages.json", "size": 13685, "modified": "2019-07-04T08:10:28Z" }, "_locales/fi": { "depth": 1, "filename": "fi", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/fi", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/fi/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "10582b7e45c65f8e46a6b7b15f23c61c1364425176b2ca03b9749ccc3f22130b", "mime_category": "text", "mimetype": "application/json", "path": "_locales/fi/messages.json", "size": 10745, "modified": "2019-07-04T08:10:28Z" }, "_locales/fil": { "depth": 1, "filename": "fil", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/fil", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/fil/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "5d59cad4e69f62a1d6b0ee09c2a20a8ab4507c0fee11c79db3d20f6af77b23b0", "mime_category": "text", "mimetype": "application/json", "path": "_locales/fil/messages.json", "size": 5066, "modified": "2019-07-04T08:10:28Z" }, "_locales/fr": { "depth": 1, "filename": "fr", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/fr", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/fr/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "a35712eb539c670a8fb9e500c207aadab658b4bd9f6d8a25c7b7116fa8bd28d3", "mime_category": "text", "mimetype": "application/json", "path": "_locales/fr/messages.json", "size": 11420, "modified": "2019-07-04T08:10:28Z" }, "_locales/gu": { "depth": 1, "filename": "gu", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/gu", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/gu/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "12131a4e363f10555e4c2a2c8554043549d0dbb6f98689698f43c2d12ea76612", "mime_category": "text", "mimetype": "application/json", "path": "_locales/gu/messages.json", "size": 6383, "modified": "2019-07-04T08:10:28Z" }, "_locales/he": { "depth": 1, "filename": "he", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/he", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/he/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "f8681fd777edc86d31e5a7081f5d91103b53362add85ecc15f6c52c0b28b5557", "mime_category": "text", "mimetype": "application/json", "path": "_locales/he/messages.json", "size": 12095, "modified": "2019-07-04T08:10:28Z" }, "_locales/hi": { "depth": 1, "filename": "hi", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/hi", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/hi/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "432b8a0f9e709f319ca7b3e644599b0286a2422a593d463955ffe2876feddd13", "mime_category": "text", "mimetype": "application/json", "path": "_locales/hi/messages.json", "size": 8749, "modified": "2019-07-04T08:10:28Z" }, "_locales/hr": { "depth": 1, "filename": "hr", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/hr", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/hr/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "357380249bcd0c3e44dd27f7bbf276249aa32763d9605b84866789124c926128", "mime_category": "text", "mimetype": "application/json", "path": "_locales/hr/messages.json", "size": 10729, "modified": "2019-07-04T08:10:28Z" }, "_locales/hu": { "depth": 1, "filename": "hu", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/hu", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/hu/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "fde19a7ea3a3c7af11ace29feb3332dee663151c43709ac8af16684fc9b05417", "mime_category": "text", "mimetype": "application/json", "path": "_locales/hu/messages.json", "size": 11372, "modified": "2019-07-04T08:10:28Z" }, "_locales/id": { "depth": 1, "filename": "id", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/id", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/id/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "42e4345f67d085af9ff7557c79d2ee05af94178b4203083bb3346c413856ef16", "mime_category": "text", "mimetype": "application/json", "path": "_locales/id/messages.json", "size": 11051, "modified": "2019-07-04T08:10:28Z" }, "_locales/it": { "depth": 1, "filename": "it", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/it", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/it/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "61e8e5c883be99c60ed8b91e05c8c0c9f1e530ef95152ec621d5919f11f97d9a", "mime_category": "text", "mimetype": "application/json", "path": "_locales/it/messages.json", "size": 11235, "modified": "2019-07-04T08:10:28Z" }, "_locales/ja": { "depth": 1, "filename": "ja", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ja", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ja/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "53669c74d62a4de665249ef0c737eb17af61482b5773c14d5d8f9596126b7b01", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ja/messages.json", "size": 11839, "modified": "2019-07-04T08:10:28Z" }, "_locales/kn": { "depth": 1, "filename": "kn", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/kn", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/kn/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "d5b5f3282b54abe8a907d35c5eab8a2397eed3d6bc3d322477bb1a01f64cfa1b", "mime_category": "text", "mimetype": "application/json", "path": "_locales/kn/messages.json", "size": 7515, "modified": "2019-07-04T08:10:28Z" }, "_locales/ko": { "depth": 1, "filename": "ko", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ko", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ko/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "0fa1bc48c31670f316c0349b659dd72fb7da48fcc8516ed1d152848d23d58cfb", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ko/messages.json", "size": 11075, "modified": "2019-07-04T08:10:28Z" }, "_locales/lt": { "depth": 1, "filename": "lt", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/lt", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/lt/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "fb6c968749ca2fb5d8864334740d43a1f52196aff9e7a7eb2d00d8f577f28aad", "mime_category": "text", "mimetype": "application/json", "path": "_locales/lt/messages.json", "size": 10748, "modified": "2019-07-04T08:10:28Z" }, "_locales/lv": { "depth": 1, "filename": "lv", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/lv", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/lv/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "4a5162ca6e1e8c78f540546b42014398df2f48f71c4f619e720be1dd6e0272be", "mime_category": "text", "mimetype": "application/json", "path": "_locales/lv/messages.json", "size": 10519, "modified": "2019-07-04T08:10:28Z" }, "_locales/ml": { "depth": 1, "filename": "ml", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ml", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ml/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "7bcb828810a1eda8ab915aa360b99eef55fd157df4ad99ffaa927887c75d8410", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ml/messages.json", "size": 5819, "modified": "2019-07-04T08:10:28Z" }, "_locales/ms": { "depth": 1, "filename": "ms", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ms", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ms/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "ade363c5f61a3f41f89c027ea378970ba10ab294ac6b7428dc9a61227e9a52a5", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ms/messages.json", "size": 11017, "modified": "2019-07-04T08:10:28Z" }, "_locales/nb": { "depth": 1, "filename": "nb", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/nb", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/nb/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "37c4a57b63b6c3dd004e1b3c5937d3ff2cc5722306716db5ac0be6c842a7ffae", "mime_category": "text", "mimetype": "application/json", "path": "_locales/nb/messages.json", "size": 10780, "modified": "2019-07-04T08:10:28Z" }, "_locales/nl": { "depth": 1, "filename": "nl", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/nl", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/nl/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "92d3ab3ccb59c414fe0b61a41c2df1993cf06d846d7f46031fcf3f2026e8c52e", "mime_category": "text", "mimetype": "application/json", "path": "_locales/nl/messages.json", "size": 10682, "modified": "2019-07-04T08:10:28Z" }, "_locales/pl": { "depth": 1, "filename": "pl", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/pl", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/pl/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "a5ab1b10b8f796b11f5f0766c6a67f6c8144d004fa61c23989f6b138e7cc1361", "mime_category": "text", "mimetype": "application/json", "path": "_locales/pl/messages.json", "size": 11002, "modified": "2019-07-04T08:10:28Z" }, "_locales/pt_BR": { "depth": 1, "filename": "pt_BR", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/pt_BR", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/pt_BR/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "68750f36f14553866e13cc4f987138df1e64db7dc302ffad6ab9ae467b1510ea", "mime_category": "text", "mimetype": "application/json", "path": "_locales/pt_BR/messages.json", "size": 11021, "modified": "2019-07-04T08:10:28Z" }, "_locales/pt_PT": { "depth": 1, "filename": "pt_PT", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/pt_PT", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/pt_PT/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "3bc792e856d4dbdd4ede672db3aefb5dcf0bf4c571fc440225e2cb5bc810fc1f", "mime_category": "text", "mimetype": "application/json", "path": "_locales/pt_PT/messages.json", "size": 10872, "modified": "2019-07-04T08:10:28Z" }, "_locales/ro": { "depth": 1, "filename": "ro", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ro", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ro/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "ebe007df3d71aeaab7e4f52b5cd7390f5240ddbd20580c3a624e057a3c1cd87a", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ro/messages.json", "size": 10880, "modified": "2019-07-04T08:10:28Z" }, "_locales/ru": { "depth": 1, "filename": "ru", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ru", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ru/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "7245e060e952fdbc860619e856c3c5a0c52e62c7c1c45d905f7520be26471345", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ru/messages.json", "size": 14495, "modified": "2019-07-04T08:10:28Z" }, "_locales/sk": { "depth": 1, "filename": "sk", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/sk", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/sk/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "8e819a5767e7d2b79987e4f55c9a806ef1e8856cd9f5a84f0e96b925547bda14", "mime_category": "text", "mimetype": "application/json", "path": "_locales/sk/messages.json", "size": 10847, "modified": "2019-07-04T08:10:28Z" }, "_locales/sl": { "depth": 1, "filename": "sl", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/sl", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/sl/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "ae79ed89393486ef2c0a287a376841505c2f466086bcd36b2e87c8d5d05f900b", "mime_category": "text", "mimetype": "application/json", "path": "_locales/sl/messages.json", "size": 10575, "modified": "2019-07-04T08:10:28Z" }, "_locales/sr": { "depth": 1, "filename": "sr", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/sr", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/sr/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "89610f72241ee6495f9ce449d8567c2226a59bd74ebc4164bf0b56d63942f7ec", "mime_category": "text", "mimetype": "application/json", "path": "_locales/sr/messages.json", "size": 13517, "modified": "2019-07-04T08:10:28Z" }, "_locales/sv": { "depth": 1, "filename": "sv", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/sv", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/sv/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "e18d1a34f1fe54de47ea840220db00ba97b99f62353ad1e7590eba093d1b978d", "mime_category": "text", "mimetype": "application/json", "path": "_locales/sv/messages.json", "size": 10680, "modified": "2019-07-04T08:10:28Z" }, "_locales/sw": { "depth": 1, "filename": "sw", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/sw", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/sw/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "bbc04a66eabdf90facd35c8713f046e5d6b8b58def7650d034b07a6bfe0e42f7", "mime_category": "text", "mimetype": "application/json", "path": "_locales/sw/messages.json", "size": 3239, "modified": "2019-07-04T08:10:28Z" }, "_locales/ta": { "depth": 1, "filename": "ta", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/ta", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/ta/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "a07cba496c2a9ef906abedf24a6a24736b89fe599e16947f9c69ad4e0ee8df79", "mime_category": "text", "mimetype": "application/json", "path": "_locales/ta/messages.json", "size": 10655, "modified": "2019-07-04T08:10:28Z" }, "_locales/te": { "depth": 1, "filename": "te", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/te", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/te/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "8ddb0fbb65c2e6434c3a570621e25ccf1fdec3a1cbf63ea38438241a46ee58bd", "mime_category": "text", "mimetype": "application/json", "path": "_locales/te/messages.json", "size": 7343, "modified": "2019-07-04T08:10:28Z" }, "_locales/th": { "depth": 1, "filename": "th", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/th", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/th/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "ce21d13ee4c6b2227b7c1f3f71d59d35805e8cd274b906c9490d7922d28cf637", "mime_category": "text", "mimetype": "application/json", "path": "_locales/th/messages.json", "size": 14487, "modified": "2019-07-04T08:10:28Z" }, "_locales/tr": { "depth": 1, "filename": "tr", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/tr", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/tr/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "bba89e08a7f6fe82f137f66611c111c68b9a494797f4c053b0243df797645343", "mime_category": "text", "mimetype": "application/json", "path": "_locales/tr/messages.json", "size": 11144, "modified": "2019-07-04T08:10:28Z" }, "_locales/uk": { "depth": 1, "filename": "uk", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/uk", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/uk/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "d56dad7e2e3f9a20f4fefdabffc50a310235350b01e437fe4ee36cef148ba14b", "mime_category": "text", "mimetype": "application/json", "path": "_locales/uk/messages.json", "size": 14146, "modified": "2019-07-04T08:10:28Z" }, "_locales/vi": { "depth": 1, "filename": "vi", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/vi", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/vi/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "508e72e9990bac055158a8e1cade08477adc99903dcbc8f2ed32fc32dc756b13", "mime_category": "text", "mimetype": "application/json", "path": "_locales/vi/messages.json", "size": 12146, "modified": "2019-07-04T08:10:28Z" }, "_locales/zh_CN": { "depth": 1, "filename": "zh_CN", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/zh_CN", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/zh_CN/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "f68d7ea5e887d28ad21d6fe02063122ca870726236b9a5324ee7ea7de7f60d16", "mime_category": "text", "mimetype": "application/json", "path": "_locales/zh_CN/messages.json", "size": 10047, "modified": "2019-07-04T08:10:28Z" }, "_locales/zh_TW": { "depth": 1, "filename": "zh_TW", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_locales/zh_TW", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_locales/zh_TW/messages.json": { "depth": 2, "filename": "messages.json", "sha256": "8b9003b4850da83ae85b7e6d68d7f78e5a325f2834263989aff3c7a04aaec28a", "mime_category": "text", "mimetype": "application/json", "path": "_locales/zh_TW/messages.json", "size": 10012, "modified": "2019-07-04T08:10:28Z" }, "_metadata": { "depth": 0, "filename": "_metadata", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "_metadata", "size": null, "modified": "2019-07-04T08:10:28Z" }, "_metadata/verified_contents.json": { "depth": 1, "filename": "verified_contents.json", "sha256": "5e9cc64854d8da2362734c45e0153b8c96f0064575a05ccd7331e2b3ace6f281", "mime_category": "text", "mimetype": "application/json", "path": "_metadata/verified_contents.json", "size": 25389, "modified": "2019-07-04T08:10:28Z" }, "background.js": { "depth": 0, "filename": "background.js", "sha256": "8582322a8a27d6e90fb9ef502add9cd42d7445ac030c047e088e612178e9f3c5", "mime_category": "text", "mimetype": "text/x-c", "path": "background.js", "size": 2046, "modified": "2019-07-04T08:10:28Z" }, "common.js": { "depth": 0, "filename": "common.js", "sha256": "f3b8458b57a0dab3a380b894b6dad6763f14953413945d21d75e284d58cdb620", "mime_category": "text", "mimetype": "text/javascript", "path": "common.js", "size": 4383, "modified": "2019-07-04T08:10:28Z" }, "composer.html": { "depth": 0, "filename": "composer.html", "sha256": "f1369dabb8b2d62395e30bece283ef642684836d8587e91d2269c4a99f978250", "mime_category": "text", "mimetype": "text/html", "path": "composer.html", "size": 2496, "modified": "2019-07-04T08:10:28Z" }, "composer.js": { "depth": 0, "filename": "composer.js", "sha256": "3cbb9f736fb1bd30a6111dad17adfc8433a4c418a25e5ee74c01c9b8468dd160", "mime_category": "text", "mimetype": "text/javascript", "path": "composer.js", "size": 2337, "modified": "2019-07-04T08:10:28Z" }, "devtools-panel.html": { "depth": 0, "filename": "devtools-panel.html", "sha256": "2cf9e31f4827e0d2585351b3609fe714a5af56d6cb7475c3c48839e6df6978fd", "mime_category": "text", "mimetype": "text/html", "path": "devtools-panel.html", "size": 3334, "modified": "2019-07-04T08:10:28Z" }, "devtools-panel.js": { "depth": 0, "filename": "devtools-panel.js", "sha256": "a4a824c37b65f7620ee2dff24903d057b774df3d07ca4bcc77949e6a544a6719", "mime_category": "text", "mimetype": "text/javascript", "path": "devtools-panel.js", "size": 6298, "modified": "2019-07-04T08:10:28Z" }, "devtools.html": { "depth": 0, "filename": "devtools.html", "sha256": "8edb66bdf0ee23607a1d5fab8bd3a3bd81b3265f4f153d32c7bcfb4f836c7d88", "mime_category": "text", "mimetype": "text/html", "path": "devtools.html", "size": 748, "modified": "2019-07-04T08:10:28Z" }, "devtools.js": { "depth": 0, "filename": "devtools.js", "sha256": "a19096055f31290d6c6905a4920562d1428cea0154996ac10f1230b41ab33efe", "mime_category": "text", "mimetype": "text/javascript", "path": "devtools.js", "size": 1551, "modified": "2019-07-04T08:10:28Z" }, "elemHideEmulation.js": { "depth": 0, "filename": "elemHideEmulation.js", "sha256": "1e02d62aea4cf4004a6158629a5d0112b3f72c36fb1cd5b484140e69c9c51e3a", "mime_category": "text", "mimetype": "text/javascript", "path": "elemHideEmulation.js", "size": 6401, "modified": "2019-07-04T08:10:28Z" }, "ext": { "depth": 0, "filename": "ext", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "ext", "size": null, "modified": "2019-07-04T08:10:28Z" }, "ext/background.js": { "depth": 1, "filename": "background.js", "sha256": "d82b61fab676f7e3fc391978b8ead709ff76c13bccbd0c06f0785272ddc3a8b5", "mime_category": "text", "mimetype": "text/javascript", "path": "ext/background.js", "size": 21331, "modified": "2019-07-04T08:10:28Z" }, "ext/common.js": { "depth": 1, "filename": "common.js", "sha256": "0fa108030884be079516bf3e0f558a06e0885aa19cc766af43dc1ce255af5bac", "mime_category": "text", "mimetype": "text/javascript", "path": "ext/common.js", "size": 2823, "modified": "2019-07-04T08:10:28Z" }, "ext/content.js": { "depth": 1, "filename": "content.js", "sha256": "03b2c524e671cdd69e9403b7587918e44e5467befd7ad7d539e5312025a17045", "mime_category": "text", "mimetype": "text/javascript", "path": "ext/content.js", "size": 763, "modified": "2019-07-04T08:10:28Z" }, "ext/devtools.js": { "depth": 1, "filename": "devtools.js", "sha256": "5ba65b15e02d773dd94d807d6d2e3ba012ed15d65fdd12a5ba39a6f77de31912", "mime_category": "text", "mimetype": "text/javascript", "path": "ext/devtools.js", "size": 919, "modified": "2019-07-04T08:10:28Z" }, "ext/popup.js": { "depth": 1, "filename": "popup.js", "sha256": "a410acb906a0c608bfcc11f8a744e79293042c1cba0a5d19cbd32f730036aac6", "mime_category": "text", "mimetype": "text/javascript", "path": "ext/popup.js", "size": 445, "modified": "2019-07-04T08:10:28Z" }, "firstRun.html": { "depth": 0, "filename": "firstRun.html", "sha256": "8f4abf5c6f803d8b171ecad56295bd79ec33e0933e6f33865a5efaff3819d916", "mime_category": "text", "mimetype": "text/html", "path": "firstRun.html", "size": 3857, "modified": "2019-07-04T08:10:28Z" }, "firstRun.js": { "depth": 0, "filename": "firstRun.js", "sha256": "24d04ab3936ec3a1f143b77a6fb6d68627d9b333d644192fbcab7ccf68fdc8e4", "mime_category": "text", "mimetype": "text/javascript", "path": "firstRun.js", "size": 3788, "modified": "2019-07-04T08:10:28Z" }, "i18n.js": { "depth": 0, "filename": "i18n.js", "sha256": "e9f47d785933c030e1403341d6b3de2a5bdcf70919f53adbaa9f685064843cd2", "mime_category": "text", "mimetype": "text/javascript", "path": "i18n.js", "size": 3958, "modified": "2019-07-04T08:10:28Z" }, "icons": { "depth": 0, "filename": "icons", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "icons", "size": null, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-16-notification-critical.png": { "depth": 1, "filename": "abp-16-notification-critical.png", "sha256": "2f63871f6909716563fba9fa8df379dd8d8d350fa2aae4789c21fad7911c476a", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-16-notification-critical.png", "size": 249, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-16-notification-information.png": { "depth": 1, "filename": "abp-16-notification-information.png", "sha256": "570b814cf1c4c93fc77b7639d80fbf618eba1e2270a7629dcbf147771956eba0", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-16-notification-information.png", "size": 358, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-16-whitelisted.png": { "depth": 1, "filename": "abp-16-whitelisted.png", "sha256": "a80f4d83eaba44f1336edca1593ba458a31fffb4a60298c8ce3bfd6dd26c1346", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-16-whitelisted.png", "size": 417, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-16.png": { "depth": 1, "filename": "abp-16.png", "sha256": "5517b7393b00d924afcd267fe46ee7bbb35a8ba5397d7d45a4e995b788ff00d3", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-16.png", "size": 395, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-19-notification-critical.png": { "depth": 1, "filename": "abp-19-notification-critical.png", "sha256": "ae81207406421e5abc78b2c7738433a76d6f7225e743578036199f3300c95e80", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-19-notification-critical.png", "size": 270, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-19-notification-information.png": { "depth": 1, "filename": "abp-19-notification-information.png", "sha256": "31e95518e3c894638ba817a7115379d21ebadfc29b65f95d606bca8b10a50c1c", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-19-notification-information.png", "size": 382, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-19-whitelisted.png": { "depth": 1, "filename": "abp-19-whitelisted.png", "sha256": "102f6e80bd62d50a25bf447c1c807ad2e8b7fd34ee16023f23fed36631211cd3", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-19-whitelisted.png", "size": 436, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-19.png": { "depth": 1, "filename": "abp-19.png", "sha256": "b8c117220946f226efdc8b7ac6a89fa0489530fb07a031866efa2849ca7acf04", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-19.png", "size": 445, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-20-notification-critical.png": { "depth": 1, "filename": "abp-20-notification-critical.png", "sha256": "1916d875a6a1b6bd541a237f9f48d5efe548b94f5e379f94d45c944a6f154000", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-20-notification-critical.png", "size": 457, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-20-notification-information.png": { "depth": 1, "filename": "abp-20-notification-information.png", "sha256": "eed1943857b486ae5b3bfd121a21853f72965fc294fa776bd3a9a6ca6dfd0a1d", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-20-notification-information.png", "size": 500, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-20-whitelisted.png": { "depth": 1, "filename": "abp-20-whitelisted.png", "sha256": "a72b79eee09bc9c17fdb128a390683f4fec532b66c93cbfefb7c915e9017b4e3", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-20-whitelisted.png", "size": 566, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-20.png": { "depth": 1, "filename": "abp-20.png", "sha256": "67e4dc83482d8991baeacb74de4b2c6f765e613f6bf85623276bab9cf9d7b89e", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-20.png", "size": 671, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-32-notification-critical.png": { "depth": 1, "filename": "abp-32-notification-critical.png", "sha256": "a641214a1e415e6bddc7d58d48f7674feaf640f0f564d40ca50c51c6a080bde6", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-32-notification-critical.png", "size": 348, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-32-notification-information.png": { "depth": 1, "filename": "abp-32-notification-information.png", "sha256": "4131001cae28d7bc074c43ff3744d8fc819087b368a417236e2da1283b55a4e2", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-32-notification-information.png", "size": 574, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-32-whitelisted.png": { "depth": 1, "filename": "abp-32-whitelisted.png", "sha256": "7de29282f5110e2664a3be8fadbc36cc6ea39780a3f129c50f267b0c6a40bd50", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-32-whitelisted.png", "size": 667, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-32.png": { "depth": 1, "filename": "abp-32.png", "sha256": "7eb23bbe90a7fb796361f140f40c277dbf80f1f09d4a413a96d8c80128c9955a", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-32.png", "size": 703, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-38-notification-critical.png": { "depth": 1, "filename": "abp-38-notification-critical.png", "sha256": "d4bc65592eac5486df99d235d67c69ace0efc4980c9de24df2c4992d2f83bb6c", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-38-notification-critical.png", "size": 441, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-38-notification-information.png": { "depth": 1, "filename": "abp-38-notification-information.png", "sha256": "0fee57220cf000faf10979a33fa3c9630d1394adf65acfff514b9073be1fadd9", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-38-notification-information.png", "size": 718, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-38-whitelisted.png": { "depth": 1, "filename": "abp-38-whitelisted.png", "sha256": "61a1db4425e78713ffc344e6d9fbaae789d010b7a82d9e0acda8dccea9af5380", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-38-whitelisted.png", "size": 806, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-38.png": { "depth": 1, "filename": "abp-38.png", "sha256": "d2a2e660a9fe7a9ca5f217971e4f4f12406a71a9e49e696883ca4b0881620594", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-38.png", "size": 831, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-40-notification-critical.png": { "depth": 1, "filename": "abp-40-notification-critical.png", "sha256": "53e7e530224b2a97fa53771d4fced0db1a03970a66bf9b0a4c1f3935e7ad305f", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-40-notification-critical.png", "size": 488, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-40-notification-information.png": { "depth": 1, "filename": "abp-40-notification-information.png", "sha256": "090aef750cc49af4c970bd7361b7e45679bf9069930883df26e9a0817308f636", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-40-notification-information.png", "size": 629, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-40-whitelisted.png": { "depth": 1, "filename": "abp-40-whitelisted.png", "sha256": "0085a79f7e2d9f81a935b966bf2616ed0f033ca169fbc4a192c4a9ed87b6e5c0", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-40-whitelisted.png", "size": 757, "modified": "2019-07-04T08:10:28Z" }, "icons/abp-40.png": { "depth": 1, "filename": "abp-40.png", "sha256": "49837592ae14ffc780902e81235c96974839b42189ca259532513e3dce126561", "mime_category": "image", "mimetype": "image/png", "path": "icons/abp-40.png", "size": 801, "modified": "2019-07-04T08:10:28Z" }, "icons/detailed": { "depth": 1, "filename": "detailed", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "icons/detailed", "size": null, "modified": "2019-07-04T08:10:28Z" }, "icons/detailed/abp-128.png": { "depth": 2, "filename": "abp-128.png", "sha256": "ff11552e6137c650e27ad68e2230b5612a0d9c2c4297f11eb1b18564f5e2f4d9", "mime_category": "image", "mimetype": "image/png", "path": "icons/detailed/abp-128.png", "size": 7768, "modified": "2019-07-04T08:10:28Z" }, "icons/detailed/abp-32.png": { "depth": 2, "filename": "abp-32.png", "sha256": "5caccf342dc071ffdb9d0083f43471001ec4bb91b080599e802b7aca5888aebc", "mime_category": "image", "mimetype": "image/png", "path": "icons/detailed/abp-32.png", "size": 1487, "modified": "2019-07-04T08:10:28Z" }, "icons/detailed/abp-48.png": { "depth": 2, "filename": "abp-48.png", "sha256": "ba2a678d3c94bf627d827e86632d437a8d5a1c80b1072a8cc0da57b07bbb560b", "mime_category": "image", "mimetype": "image/png", "path": "icons/detailed/abp-48.png", "size": 2600, "modified": "2019-07-04T08:10:28Z" }, "icons/detailed/abp-64.png": { "depth": 2, "filename": "abp-64.png", "sha256": "51e3a03175843150e35c7608dac4a64ca8155583990c6472403ccb7bcc934177", "mime_category": "image", "mimetype": "image/png", "path": "icons/detailed/abp-64.png", "size": 3439, "modified": "2019-07-04T08:10:28Z" }, "include.postload.js": { "depth": 0, "filename": "include.postload.js", "sha256": "bd7cb1af2cf69eb6ba715748bd71371cf6e4c576ce74940445085fe49883ccdc", "mime_category": "text", "mimetype": "text/javascript", "path": "include.postload.js", "size": 19770, "modified": "2019-07-04T08:10:28Z" }, "include.preload.js": { "depth": 0, "filename": "include.preload.js", "sha256": "c629a360b6882a40e72b1551593f7007db2f24d0285f4a520f97b8f3567fd5f8", "mime_category": "text", "mimetype": "text/javascript", "path": "include.preload.js", "size": 16337, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui": { "depth": 0, "filename": "jquery-ui", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "jquery-ui", "size": null, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css": { "depth": 1, "filename": "css", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "jquery-ui/css", "size": null, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness": { "depth": 2, "filename": "smoothness", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "jquery-ui/css/smoothness", "size": null, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images": { "depth": 3, "filename": "images", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "jquery-ui/css/smoothness/images", "size": null, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png": { "depth": 4, "filename": "ui-bg_flat_0_aaaaaa_40x100.png", "sha256": "9a8492a580bf85d3e98ae8861fbd45567e5a1f83eeafcf9574da0399d5f602ab", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png", "size": 180, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png": { "depth": 4, "filename": "ui-bg_flat_75_ffffff_40x100.png", "sha256": "39ab7ccd9f4e82579da78a9241265df288d8eb65dbbd7cf48aed2d0129887df5", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png", "size": 178, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png": { "depth": 4, "filename": "ui-bg_glass_55_fbf9ee_1x400.png", "sha256": "691597e8a40a891ea94d3589976ecfc33e6145c49422443b00ac2b5a0022964c", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png", "size": 120, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png": { "depth": 4, "filename": "ui-bg_glass_65_ffffff_1x400.png", "sha256": "f0e6cd91b837d5c5644d026e5ffeccd907953317cd5c0f689901733afda260b2", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png", "size": 105, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png": { "depth": 4, "filename": "ui-bg_glass_75_dadada_1x400.png", "sha256": "c108f5cbf2dd9ec07a26530695ddd95e1664597ce6c056ae44c162cc2e28cec4", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png", "size": 111, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png": { "depth": 4, "filename": "ui-bg_glass_75_e6e6e6_1x400.png", "sha256": "ddf5dd4e0ef2b185e8bb0af7b6e90ebe74a84384cb4700658e76e754c8bfe550", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png", "size": 110, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png": { "depth": 4, "filename": "ui-bg_glass_95_fef1ec_1x400.png", "sha256": "f6f1c1bedf1a0f37cfef81d12f5f012869d1ee7c984775a569827a1784d34f5c", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png", "size": 119, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png": { "depth": 4, "filename": "ui-bg_highlight-soft_75_cccccc_1x100.png", "sha256": "54270656df079c4da5182629a080fc633b6f84b87985eb016d25a560e2c38d4a", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png", "size": 101, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png": { "depth": 4, "filename": "ui-icons_222222_256x240.png", "sha256": "a2ccfdc001858222885a9df39200840ac7a3f479ba889727d32a10398db7918a", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png", "size": 4369, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png": { "depth": 4, "filename": "ui-icons_2e83ff_256x240.png", "sha256": "4f907b912e024625d36b8af307f1043e6ebc97074e31216175d14bb74c370dc3", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png", "size": 4369, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png": { "depth": 4, "filename": "ui-icons_454545_256x240.png", "sha256": "cb36e80beaf2a527d463da552a5c679a46c4ff8c881318a194bb0ccb61cb2d5c", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png", "size": 4369, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png": { "depth": 4, "filename": "ui-icons_888888_256x240.png", "sha256": "a42b23e21050a0f0f90c1f7a443b8087a409771611eae402861959a793be38e8", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png", "size": 4369, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png": { "depth": 4, "filename": "ui-icons_cd0a0a_256x240.png", "sha256": "53f9f6be37d5c395c125a53dbf39c697fc3e5fd44a5f09f0d99710910f840dd6", "mime_category": "image", "mimetype": "image/png", "path": "jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png", "size": 4369, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css": { "depth": 3, "filename": "jquery-ui-1.8.16.custom.css", "sha256": "55c6c93f3e8e0ee3ea5235734684ddcdd8cdb59462871041f643107bb4af2647", "mime_category": "text", "mimetype": "text/css", "path": "jquery-ui/css/smoothness/jquery-ui-1.8.16.custom.css", "size": 22785, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/js": { "depth": 1, "filename": "js", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "jquery-ui/js", "size": null, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/js/jquery-1.7.1.min.js": { "depth": 2, "filename": "jquery-1.7.1.min.js", "sha256": "88171413fc76dda23ab32baa17b11e4fff89141c633ece737852445f1ba6c1bd", "mime_category": "text", "mimetype": "text/html", "path": "jquery-ui/js/jquery-1.7.1.min.js", "size": 93868, "modified": "2019-07-04T08:10:28Z" }, "jquery-ui/js/jquery-ui-1.8.16.custom.min.js": { "depth": 2, "filename": "jquery-ui-1.8.16.custom.min.js", "sha256": "b34db8c782c6f4de8ea376a8af427974af073c9f7ebd3fd7636b64af80fed375", "mime_category": "text", "mimetype": "text/javascript", "path": "jquery-ui/js/jquery-ui-1.8.16.custom.min.js", "size": 30148, "modified": "2019-07-04T08:10:28Z" }, "lib": { "depth": 0, "filename": "lib", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "lib", "size": null, "modified": "2019-07-04T08:10:28Z" }, "lib/adblockplus.js": { "depth": 1, "filename": "adblockplus.js", "sha256": "9f81fca138b5fe8a2f22d9a4b8de55a318acdb56d729680475f4b2d41c1b0be8", "mime_category": "text", "mimetype": "text/javascript", "path": "lib/adblockplus.js", "size": 283884, "modified": "2019-07-04T08:10:28Z" }, "lib/compat.js": { "depth": 1, "filename": "compat.js", "sha256": "3b3bd553715300d012d6f59143cf90dcc3085109101bfd1cadebca78a7f6e376", "mime_category": "text", "mimetype": "text/javascript", "path": "lib/compat.js", "size": 4967, "modified": "2019-07-04T08:10:28Z" }, "lib/info.js": { "depth": 1, "filename": "info.js", "sha256": "ab66c823591d30deea47699e43503273eaa29a3e7fc7de315ad5ea664b28e7f5", "mime_category": "text", "mimetype": "text/javascript", "path": "lib/info.js", "size": 1670, "modified": "2019-07-04T08:10:28Z" }, "lib/publicSuffixList.js": { "depth": 1, "filename": "publicSuffixList.js", "sha256": "49cea74e1b0b8e0af306e1b406e3fe7aba25d77b75f8477230519b44b60f5fae", "mime_category": "text", "mimetype": "text/javascript", "path": "lib/publicSuffixList.js", "size": 151877, "modified": "2019-07-04T08:10:28Z" }, "managed-storage-schema.json": { "depth": 0, "filename": "managed-storage-schema.json", "sha256": "26eafd8cbed5bf928e3989b4d2ad5a1d20f3581122cd2692744e62b62a9fbcd2", "mime_category": "text", "mimetype": "application/json", "path": "managed-storage-schema.json", "size": 223, "modified": "2019-07-04T08:10:28Z" }, "manifest.json": { "depth": 0, "filename": "manifest.json", "sha256": "521fce5b388cd8f06d7fbf35bf4988b16a3a465fd3f1af92727eeaf5b6ab8ca6", "mime_category": "text", "mimetype": "application/json", "path": "manifest.json", "size": 2159, "modified": "2019-07-04T08:10:28Z" }, "messageResponder.js": { "depth": 0, "filename": "messageResponder.js", "sha256": "333219243881828d3c3f73609cd80afc69e52f8d1833b4317cce5058a7a2d841", "mime_category": "text", "mimetype": "text/x-c", "path": "messageResponder.js", "size": 11556, "modified": "2019-07-04T08:10:28Z" }, "notification.js": { "depth": 0, "filename": "notification.js", "sha256": "96cef081e5750a05ce7690c07010f51f8c1c904005461f418cba004e3c80d931", "mime_category": "text", "mimetype": "text/javascript", "path": "notification.js", "size": 3105, "modified": "2019-07-04T08:10:28Z" }, "options.html": { "depth": 0, "filename": "options.html", "sha256": "d0c1e538d056dbf4dda16cd7ccd3cf0b09df9eb82e973ff2e22c658e91fcb1a9", "mime_category": "text", "mimetype": "text/html", "path": "options.html", "size": 8488, "modified": "2019-07-04T08:10:28Z" }, "options.js": { "depth": 0, "filename": "options.js", "sha256": "c5e3cfd368bca51436598830a70ba77c90d1cf1cd6c90465610690d0650637bc", "mime_category": "text", "mimetype": "text/javascript", "path": "options.js", "size": 21796, "modified": "2019-07-04T08:10:28Z" }, "popup.html": { "depth": 0, "filename": "popup.html", "sha256": "5a2bd2380dc33b4952d042349ccdcebc664e3cca15fc56612ed7e2dc98bc196d", "mime_category": "text", "mimetype": "text/html", "path": "popup.html", "size": 3584, "modified": "2019-07-04T08:10:28Z" }, "popup.js": { "depth": 0, "filename": "popup.js", "sha256": "04e2a08cfbdc8b95912e006046f88f8e1caa4211d14f6b69ead2121e91e2b3b3", "mime_category": "text", "mimetype": "text/javascript", "path": "popup.js", "size": 4481, "modified": "2019-07-04T08:10:28Z" }, "qunit": { "depth": 0, "filename": "qunit", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "qunit", "size": null, "modified": "2019-07-04T08:10:28Z" }, "qunit/index.html": { "depth": 1, "filename": "index.html", "sha256": "2cb219bdbba236113b10908886907518117c9b6db3338775f9eb57a2856461cb", "mime_category": "text", "mimetype": "text/html", "path": "qunit/index.html", "size": 1116, "modified": "2019-07-04T08:10:28Z" }, "skin": { "depth": 0, "filename": "skin", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "skin", "size": null, "modified": "2019-07-04T08:10:28Z" }, "skin/abb-logo.png": { "depth": 1, "filename": "abb-logo.png", "sha256": "4d574ff0241b4b94fd9042a6aba926a3b62d41d05c0488dea29e95d1b3fb5ebb", "mime_category": "image", "mimetype": "image/png", "path": "skin/abb-logo.png", "size": 1309, "modified": "2019-07-04T08:10:28Z" }, "skin/ajax-loader.gif": { "depth": 1, "filename": "ajax-loader.gif", "sha256": "34aa188e907c43f48ddc6a6dbcd648d9c2677eb4279172d47920bc43521107c7", "mime_category": "image", "mimetype": "image/gif", "path": "skin/ajax-loader.gif", "size": 3208, "modified": "2019-07-04T08:10:28Z" }, "skin/background-main.png": { "depth": 1, "filename": "background-main.png", "sha256": "df30de9322dd34aeb72127de3bfc46e879e54cf3342e945da4c8187fa4bf4b15", "mime_category": "image", "mimetype": "image/png", "path": "skin/background-main.png", "size": 163, "modified": "2019-07-04T08:10:28Z" }, "skin/background-share.png": { "depth": 1, "filename": "background-share.png", "sha256": "3d77098541aaaf72a42e461731556704630c4ca41ed5b91aa2c18c64df3fb3f7", "mime_category": "image", "mimetype": "image/png", "path": "skin/background-share.png", "size": 162, "modified": "2019-07-04T08:10:28Z" }, "skin/background.png": { "depth": 1, "filename": "background.png", "sha256": "a9f2c8112de562bbaad6c4a939360b43e3441159081146e0b90436e5edb02ee3", "mime_category": "image", "mimetype": "image/png", "path": "skin/background.png", "size": 162, "modified": "2019-07-04T08:10:28Z" }, "skin/common.css": { "depth": 1, "filename": "common.css", "sha256": "d5012b00f796dac16d528a3beb7cc31be3c6fc0ba7b3187abae4156f57204561", "mime_category": "text", "mimetype": "text/css", "path": "skin/common.css", "size": 1388, "modified": "2019-07-04T08:10:28Z" }, "skin/devtools-panel.css": { "depth": 1, "filename": "devtools-panel.css", "sha256": "ff738b9302b6289ff917343e58a2f9da78e478d2babb59aacb16433fe2444d97", "mime_category": "text", "mimetype": "text/css", "path": "skin/devtools-panel.css", "size": 3935, "modified": "2019-07-04T08:10:28Z" }, "skin/donate.png": { "depth": 1, "filename": "donate.png", "sha256": "c99f70343882d67bb4eb5c8672c19b4d2dcfb58cebc5c13526c31ba84b3b4645", "mime_category": "image", "mimetype": "image/png", "path": "skin/donate.png", "size": 160, "modified": "2019-07-04T08:10:28Z" }, "skin/firstRun.css": { "depth": 1, "filename": "firstRun.css", "sha256": "444a03f71b0f7d7cda1fce1613483025309200e827efa62cc18b715d7b4ec405", "mime_category": "text", "mimetype": "text/css", "path": "skin/firstRun.css", "size": 7846, "modified": "2019-07-04T08:10:28Z" }, "skin/fonts": { "depth": 1, "filename": "fonts", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "skin/fonts", "size": null, "modified": "2019-07-04T08:10:28Z" }, "skin/fonts/CreteRound-Italic.otf": { "depth": 2, "filename": "CreteRound-Italic.otf", "sha256": "7f67dc8877528989a422451f488b38cde7caa83c46b39f1e5bab42cc5e3cfa00", "mime_category": "binary", "mimetype": "application/vnd.ms-opentype", "path": "skin/fonts/CreteRound-Italic.otf", "size": 43152, "modified": "2019-07-04T08:10:28Z" }, "skin/fonts/CreteRound-Regular.otf": { "depth": 2, "filename": "CreteRound-Regular.otf", "sha256": "01d239ca966dad69e10b0fe7a65a5a2dee2487b3d5b9bf99bf852e1ab2304565", "mime_category": "binary", "mimetype": "application/vnd.ms-opentype", "path": "skin/fonts/CreteRound-Regular.otf", "size": 40968, "modified": "2019-07-04T08:10:28Z" }, "skin/popup.css": { "depth": 1, "filename": "popup.css", "sha256": "196e77955e51b5870d678d5fcf5e44173ab9a3a232b0eb49ee6c11101a93884a", "mime_category": "text", "mimetype": "text/css", "path": "skin/popup.css", "size": 5322, "modified": "2019-07-04T08:10:28Z" }, "skin/popup.png": { "depth": 1, "filename": "popup.png", "sha256": "a3a6be13a2069a1b0e873351e796c1fdd76390b08f547e36e330c2b6d8826b34", "mime_category": "image", "mimetype": "image/png", "path": "skin/popup.png", "size": 3275, "modified": "2019-07-04T08:10:28Z" }, "skin/social": { "depth": 1, "filename": "social", "sha256": "", "mime_category": "directory", "mimetype": "application/octet-stream", "path": "skin/social", "size": null, "modified": "2019-07-04T08:10:28Z" }, "skin/social/facebook.png": { "depth": 2, "filename": "facebook.png", "sha256": "22885455a1ca2aebd14e0991e75bad20c1541111808dcc5805d2ec92664b3a4d", "mime_category": "image", "mimetype": "image/png", "path": "skin/social/facebook.png", "size": 3861, "modified": "2019-07-04T08:10:28Z" }, "skin/social/googleplus.png": { "depth": 2, "filename": "googleplus.png", "sha256": "87544e7f4b083b7b84f91436fbf49747138fa75b185d0eb850a62c7ba5428d87", "mime_category": "image", "mimetype": "image/png", "path": "skin/social/googleplus.png", "size": 4009, "modified": "2019-07-04T08:10:28Z" }, "skin/social/renren.png": { "depth": 2, "filename": "renren.png", "sha256": "9c75ef332142c4b7d6729ffea35892b394dbc57689bd6b610a1436f9f997cec2", "mime_category": "image", "mimetype": "image/png", "path": "skin/social/renren.png", "size": 2619, "modified": "2019-07-04T08:10:28Z" }, "skin/social/twitter.png": { "depth": 2, "filename": "twitter.png", "sha256": "aaba9bd7aaa01e4dd7976e30cf0b025f1cc2b3384b7328c91a902e968317f656", "mime_category": "image", "mimetype": "image/png", "path": "skin/social/twitter.png", "size": 3944, "modified": "2019-07-04T08:10:28Z" }, "skin/social/weibo.png": { "depth": 2, "filename": "weibo.png", "sha256": "0d6b6370eee5bc1d9c9f734e50635925c62ad0461e8c6db14d1899519feaf74d", "mime_category": "image", "mimetype": "image/png", "path": "skin/social/weibo.png", "size": 3497, "modified": "2019-07-04T08:10:28Z" }, "stats.js": { "depth": 0, "filename": "stats.js", "sha256": "fbfc490187448fb4678355d874be581cef0ba65fa1726611212bbe813bc350fc", "mime_category": "text", "mimetype": "text/javascript", "path": "stats.js", "size": 3941, "modified": "2019-07-04T08:10:28Z" }, "subscriptions.xml": { "depth": 0, "filename": "subscriptions.xml", "sha256": "c39cdc447ed05caa36db7ef5706c56fcc66a45948775da0996d3df3c66aedb44", "mime_category": "text", "mimetype": "text/xml", "path": "subscriptions.xml", "size": 5898, "modified": "2019-07-04T08:10:28Z" }, "utils.js": { "depth": 0, "filename": "utils.js", "sha256": "4a5f5ed7dbd4f0ec57ecd4af0a706bc48843b79452aeba8b119b2a566df9198c", "mime_category": "text", "mimetype": "text/javascript", "path": "utils.js", "size": 590, "modified": "2019-07-04T08:10:28Z" } }, "selected_file": "messageResponder.js", "download_url": "https://addons-dev.allizom.org/en-US/reviewers/download-git-file/1532144/messageResponder.js/" }, "validation_url": "https://addons-dev.allizom.org/en-US/developers/addon/androidadbplus23/file/252861/validation", "validation_url_json": "https://addons-dev.allizom.org/en-US/developers/addon/androidadbplus23/file/252861/validation.json", "has_been_validated": true, "addon": { "id": 494431, "slug": "androidadbplus23", "name": { "en-US": "AndroidADBPlus" }, "icon_url": "https://addons-dev-cdn.allizom.org/static/img/addon-icons/default-64.png" } } ```
stale[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. If you think this bug should stay open, please comment on the issue with further details. Thank you for your contributions.