crxtool

Chrome extension tools

License

License

GroupId

GroupId

com.github.mike10004
ArtifactId

ArtifactId

crxtool
Last Version

Last Version

0.16
Release Date

Release Date

Type

Type

pom
Description

Description

crxtool
Chrome extension tools
Project URL

Project URL

https://github.com/mike10004/crxtool
Source Code Management

Source Code Management

https://github.com/mike10004/crxtool

Download crxtool

Filename Size
crxtool-0.16.pom 10 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.mike10004/crxtool/ -->
<dependency>
    <groupId>com.github.mike10004</groupId>
    <artifactId>crxtool</artifactId>
    <version>0.16</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.mike10004/crxtool/
implementation 'com.github.mike10004:crxtool:0.16'
// https://jarcasting.com/artifacts/com.github.mike10004/crxtool/
implementation ("com.github.mike10004:crxtool:0.16")
'com.github.mike10004:crxtool:pom:0.16'
<dependency org="com.github.mike10004" name="crxtool" rev="0.16">
  <artifact name="crxtool" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.mike10004', module='crxtool', version='0.16')
)
libraryDependencies += "com.github.mike10004" % "crxtool" % "0.16"
[com.github.mike10004/crxtool "0.16"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • crxtool-core
  • crxtool-maven-plugin
  • crxtool-testing

Travis build status AppVeyor build status Maven Central

crxtool

Library for packing and unpacking Chrome extension .crx files.

Core Library

Maven Coordinates

<dependency>
    <groupId>com.github.mike10004</groupId>
    <artifactId>crxtool-core</artifactId>
    <version>0.15</version>
</dependency>

Usage

Unpacking

try (InputStream in = new FileInputStream("my_extension.crx") {
    CrxMetadata metadata = CrxParser.getDefault().parseMetadata(in);
    System.out.println("id = " + metadata.getId());
    // handle remainder of stream as a zip archive
    try (ZipInputStream zin = new ZipInputStream(in)) {
        // ...
    }
}

Packing

Path extensionDir = new File("manifest-parent-dir").toPath();
java.security.KeyPairGenerator keyGen = java.security.KeyPairGenerator.getInstance("RSA");
java.security.SecureRandom random = new java.security.SecureRandom();
keyGen.initialize(1024, random);
java.security.KeyPair keyPair = keyGen.generateKeyPair();
try (OutputStream out = new FileOutputStream("new_extension.crx")) {
    CrxPacker.getDefault().packExtension(extensionDir, keyPair, out);
}

Maven Plugin

Maven Coordinates

<plugin>
    <groupId>com.github.mike10004</groupId>
    <artifactId>crxtool-maven-plugin</artifactId>
    <version>0.15</version>
</plugin>

Usage

Place extension source files in src/main/extension.

<build>
    <plugins>
        <plugin>
            <groupId>com.github.mike10004</groupId>
            <artifactId>crxtool-maven-plugin</artifactId>
            <version>0.15</version>
            <executions>
                <execution>
                    <id>pack</id>
                    <goals>
                        <goal>pack-extension</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <version>3.0.0</version>
            <executions>
                <execution>
                    <id>attach-artifact</id>
                    <goals>
                        <goal>attach-artifact</goal>
                    </goals>
                    <configuration>
                        <artifacts>
                            <artifact>
                                <file>${project.build.directory}/${project.artifactId}-${project.version}.crx</file>
                                <type>crx</type>
                            </artifact>
                        </artifacts>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

Credits

The extension ID construction is probably from this Stack Overflow answer. The make-page-red example extension file in the test resources is from developer.chrome.com.

Versions

Version
0.16
0.15
0.14
0.12
0.11
0.10
0.9
0.8
0.7
0.6
0.5
0.3
0.2
0.1