This extension adds manifest character images above the rank logo on the manifest page.
This extension requires:
Copy the entire directory into applications/extensions/manifest_char_images
.
Add the following to application/config/extensions.php
:
$config['extensions']['enabled'][] = 'manifest_char_images';
This extension can be used directly out of the box. However, if so desired, this extension does support adding a blend for the character images into your background.
To blend the image into a white background, add to application/config/extensions.php
:
$config['extensions']['manifest_char_images'] = [
'blend' => 'white'
];
To blend the image into a black background, add to application/config/extensions.php
:
$config['extensions']['manifest_char_images'] = [
'blend' => 'black'
];
If you would like to add your own blend options using CSS, you can modify config.php
with additional array entries for custom blends, and then set the blend in application/config/extensions.php
to use your custom blend.
If you encounter a bug or have a feature request, please report it on GitHub in the issue tracker here: https://github.com/jonmatterson/nova-ext-manifest_char_images/issues
Copyright (c) 2018-2019 Jon Matterson.
This module is open-source software licensed under the MIT License. The full text of the license may be found in the LICENSE
file.