Added new tool: crx-jsdecompose.

This commit is contained in:
Achim D. Brucker 2017-08-30 00:04:32 +01:00
parent 4f59c56e73
commit fb13925be9
3 changed files with 7 additions and 4 deletions

View File

@ -7,8 +7,9 @@ extension from the Chrome Web store.
* `crx-tool`: A tool for analyzing and extracting `*.crx` files
(i.e., Chrome extensions). Calling `crx-tool.py <extension>.crx`
will check the integrity of the extension.
* `crx-extract`: A simple tool for extracint `*.crx` files from the
tar-based archive hierarchy.
* `crx-extract`: A simple tool for extracting `*.crx` files from the
tar-based archive hierarchy.
* `crx-jsdecompose: Build a JavaScript inventory of a *.crx` file.\
* `create-db`: A tool for creating/initializing the database files
from already existing extension archives.

View File

@ -1,6 +1,8 @@
tabulate==0.7.7
setuptools==36.2.7
cchardet==2.1.1
mysqlclient==1.3.10
requests==2.18.1
pycrypto==2.6.1
beautifulsoup4==4.6.0
python_dateutil==2.6.1
mysqlclient==1.3.10

View File

@ -5,5 +5,5 @@ setup(
description='A collection of utilities for downloading and analyzing browser extension from the Chrome Web store.',
author='Achim D. Brucker, Michael Herzberg',
license='GPL 3.0',
install_requires=['requests', 'pycrypto', 'beautifulsoup4', 'python_dateutil', 'mysqlclient', 'cchardet']
install_requires=['tabulate', 'requests', 'pycrypto', 'beautifulsoup3', 'python_dateutil', 'mysqlclient', 'cchardet']
)