.crx file install in chrome

前端 未结 6 1391
执笔经年
执笔经年 2021-01-31 07:41

I have just created a very simple chrome extension and it works fine. But when I converted to .crx file and try to open it with chrome, nothing happens. my chrome browser versio

6条回答
  •  隐瞒了意图╮
    2021-01-31 08:18

    File format
    This tool parses .CRX version 2 format documented by Google. In general, .CRX file format consist of few parts:

    Magic header
    Version of file format
    Public Key information and a package signature Zipped contents of the extension source code Magic header is a signature of the file telling that this file is Chrome Extension. Using this header the operating system can determine the actual type of the file (MIME type is application/x-chrome-extension), and how should it be treaten (is it executable? is it a text file?). Then the window system can show beautiful icon to the user.

    In .CRX files the magic header has a constant value Cr24 or 0x43723234.

    The version is provided by vendor. The version bytes are 0x02000000.

    The next part of the file contains the length of the public key information and the length of a digital signature.

    All .CRX packages distributed via Chrome WebStore should have public key information and digital signature in order to make possible for browser to check that the package has been transmitted without modifications and that no additions or replacements were made.

    After all of the header stuff, typically ending up on 307'th byte, comes the code of extension, stored as zip-archive. So the remainder of the .crx file is the well-known .zip archive.

    .crx file opened in the hex editor called HexFiend (on Mac) The header part of a .crx file selected on the picture above. Obviously, you can extract the remaining .zip archive "by hand" using any simple hex editor. In this example, we use handy HexFiend editor on Mac.

    The CRX Extractor loads a file provided, checks a magic header, version and trims the file, so only .zip archive remains. Then it returns obtained .zip archive to user.

    ref:
    https://crxextractor.com/about.html

    https://github.com/vladignatyev/crx-extractor

提交回复
热议问题