How can I programmatically find the types of content processed by Chrome?

Inside the Google Chrome extension, I would like to be able to programmatically get a list of all the HTTP Content-Typethat it can handle. For example, some of them that he processes are text/plain, text/htmland application/pdf.

+5
source share
1 answer

Looking at mapping MIME types to chrome

static const MimeInfo primary_mappings[] = {
  { "text/html", "html,htm" },
  { "text/css", "css" },
  { "text/xml", "xml" },
  { "image/gif", "gif" },
  { "image/jpeg", "jpeg,jpg" },
  { "image/webp", "webp" },
  { "image/png", "png" },
  { "video/mp4", "mp4,m4v" },
  { "audio/x-m4a", "m4a" },
  { "audio/mp3", "mp3" },
  { "video/ogg", "ogv,ogm" },
  { "audio/ogg", "ogg,oga,opus" },
  { "video/webm", "webm" },
  { "audio/webm", "webm" },
  { "audio/wav", "wav" },
  { "application/xhtml+xml", "xhtml,xht" },
  { "application/x-chrome-extension", "crx" },
  { "multipart/related", "mhtml,mht" }
};

static const MimeInfo secondary_mappings[] = {
  { "application/octet-stream", "exe,com,bin" },
  { "application/gzip", "gz" },
  { "application/pdf", "pdf" },
  { "application/postscript", "ps,eps,ai" },
  { "application/javascript", "js" },
  { "application/font-woff", "woff" },
  { "image/bmp", "bmp" },
  { "image/x-icon", "ico" },
  { "image/vnd.microsoft.icon", "ico" },
  { "image/jpeg", "jfif,pjpeg,pjp" },
  { "image/tiff", "tiff,tif" },
  { "image/x-xbitmap", "xbm" },
  { "image/svg+xml", "svg,svgz" },
  { "message/rfc822", "eml" },
  { "text/plain", "txt,text" },
  { "text/html", "shtml,ehtml" },
  { "application/rss+xml", "rss" },
  { "application/rdf+xml", "rdf" },
  { "text/xml", "xsl,xbl" },
  { "application/vnd.mozilla.xul+xml", "xul" },
  { "application/x-shockwave-flash", "swf,swl" },
  { "application/pkcs7-mime", "p7m,p7c,p7z" },
  { "application/pkcs7-signature", "p7s" }
};

For further search and you can see the link

https://code.google.com/p/chromium/codesearch#chromium/src/net/base/mime_util.cc


EDIT 1:

Yes there is no direct access for this data in the chrome extension API

MIME javascript Mime-, , , .

Unit test.

https://code.google.com/p/chromium/codesearch#chromium/src/net/base/mime_sniffer_unittest.cc


, MIME

http://webdesign.about.com/od/multimedia/a/mime-types-by-content-type.htm

http://reference.sitepoint.com/html/mime-types-full

http://www.freeformatter.com/mime-types-list.html

+2

All Articles