[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f2i-kPLRVxX-HvhQiAJGs-aD1a2BvH_SmXIwSfuSC7bY":3},{"slug":4,"display_name":4,"profile_url":5,"plugin_count":6,"total_installs":7,"avg_security_score":8,"avg_patch_time_days":9,"trust_score":10,"computed_at":11,"plugins":12},"jaapjvh","https:\u002F\u002Fprofiles.wordpress.org\u002Fjaapjvh\u002F",8,470,85,30,84,"2026-08-29T08:49:16.569Z",[13,34,51,65,76,87,97,107],{"slug":14,"name":15,"version":16,"author":4,"author_profile":5,"description":17,"short_description":18,"active_installs":19,"downloaded":20,"rating":21,"num_ratings":22,"last_updated":23,"tested_up_to":24,"requires_at_least":25,"requires_php":26,"tags":27,"homepage":29,"download_link":30,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-easy-login","JVH Easy login","1.3.1","\u003Cp>This plugin can only be used by JVH webbouw employees.\u003C\u002Fp>\n","This plugin can only be used by JVH webbouw employees.",300,2465,100,1,"2023-03-28T14:36:00.000Z","6.2.9","6.0","7.4",[28],"jvh","","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-easy-login.1.3.1.zip",0,null,"2026-07-22T17:31:50.256Z",{"slug":35,"name":36,"version":37,"author":4,"author_profile":5,"description":38,"short_description":39,"active_installs":40,"downloaded":41,"rating":21,"num_ratings":22,"last_updated":42,"tested_up_to":43,"requires_at_least":25,"requires_php":26,"tags":44,"homepage":29,"download_link":50,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-easy-scss-and-js","Easy SCSS and JS","2.5.7","\u003Cp>This plugin adds SCSS functionality, compresses JS for you and creates an easy way to enqueue scripts and styles as well as localize them.\u003C\u002Fp>\n\u003Ch3>How to use\u003C\u002Fh3>\n\u003Cp>Let’s assume this structure:\u003Cbr \u002F>\n    your theme\u003Cbr \u002F>\n    ├── assets\u003Cbr \u002F>\n    │   ├── js\u003Cbr \u002F>\n    │   │   └── script.js\u003Cbr \u002F>\n    │   └── scss\u003Cbr \u002F>\n    │       └── style.scss\u003Cbr \u002F>\n    ├── functions.php\u003Cbr \u002F>\n    └── …\u003C\u002Fp>\n\u003Cp>You can now do this in your functions.php with styles:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_action('wp_enqueue_scripts', static function(){\n    \u002F* Full version *\u002F\n    \\EasySCSSandJS\\Styles::add('my_style_handle', __DIR__ .'\u002Fassets\u002Fscss\u002Fstyle.scss', [],[], true);\n\n    \u002F* Shortest version *\u002F\n    \\EasySCSSandJS\\Styles::add('my_style_handle', __DIR__ .'\u002Fassets\u002Fscss\u002Fstyle.scss');\n\n    \u002F* Add dependencies (example: depends on handle 'bootstrap') *\u002F\n    \\EasySCSSandJS\\Styles::add('my_style_handle', __DIR__ .'\u002Fassets\u002Fscss\u002Fstyle.scss', ['bootstrap']);\n\n    \u002F* Add variables *\u002F\n    \\EasySCSSandJS\\Styles::add('my_style_handle', __DIR__ .'\u002Fassets\u002Fscss\u002Fstyle.scss', [], [\n        'my_cool_color' => '#0000ff',\n    ]);\n\n    \u002F* Enqueue it yourself *\u002F\n    \\EasySCSSandJS\\Styles::add('my_style_handle', __DIR__ .'\u002Fassets\u002Fscss\u002Fstyle.scss', [], [], false);\n    wp_enqueue_style('my_style_handle');\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>And this with scripts:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php\nadd_action('wp_enqueue_scripts', static function(){\n    \u002F* Full version *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js', ['jquery'], [], true, true);\n\n    \u002F* Shortest version (jquery is by default a dependency) *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js');\n\n    \u002F* No dependencies (also no jquery) *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js', []);\n\n    \u002F* Add dependencies (besides jquery) *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js', ['jquery', 'other_script']);\n\n    \u002F* Add variables *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js', ['jquery'], [\n        'my_variable' => 'testing this awesome plugin',\n    ]);\n\n    \u002F* Enqueue it yourself *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js', ['jquery'], [], false);\n    wp_enqueue_script('my_script_handle');\n\n    \u002F* Add the script to the header instead of the footer *\u002F\n    \\EasySCSSandJS\\Scripts::add('my_script_handle', __DIR__ .'\u002Fassets\u002Fjs\u002Fscript.js', ['jquery'], [], true, false);\n});\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Use variables in SCSS:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F This is recommended. It will throw a fatal error if your PHP doesn't set the variable for some reason.\n\u002F\u002F If PHP does set it, it will replace $my_cool_color with the defined color in PHP.\n$my_cool_color: #ffffff !default;\n\nbody{\n  background-color: $my_cool_color; \u002F\u002F This will be blue (#0000ff)\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Use variables in JS:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>alert(my_script_handle_vars.my_variable);\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Compiled files will be saved in wp-content\u002Fuploads\u002Fcompiled-scss-and-js. When that folder is cleared, everything will be regenerated.\u003C\u002Fp>\n\u003Ch3>Filters\u003C\u002Fh3>\n\u003Cp>There are filters for adding generic variables to all (or a selection) of scripts and styles or for adding extra content to files:\u003Cbr \u002F>\n– \u003Ccode>easy_scss_extra_variables\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_add_code_before_content\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_add_code_after_content\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_create_source_map\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_storage_folder_name\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_storage_folder\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_storage_folder_url\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_scss_after_compilation\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_js_extra_variables\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_js_storage_folder_name\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_js_storage_folder\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_js_storage_folder_url\u003C\u002Fcode>\u003Cbr \u002F>\n– \u003Ccode>easy_js_after_compilation\u003C\u002Fcode>\u003C\u002Fp>\n","This plugin adds SCSS functionality, compresses JS for you and creates an easy way to enqueue scripts and styles as well as localize them.",60,3069,"2022-09-05T06:55:00.000Z","6.0.12",[45,46,47,48,49],"easy","easyscss","js","ljpc","scss","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-easy-scss-and-js.2.5.7.zip",{"slug":52,"name":53,"version":54,"author":4,"author_profile":5,"description":55,"short_description":56,"active_installs":57,"downloaded":58,"rating":31,"num_ratings":31,"last_updated":59,"tested_up_to":60,"requires_at_least":61,"requires_php":62,"tags":63,"homepage":29,"download_link":64,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-gridbuilder-wpbakery-vc-element","JVH Gridbuilder WPBakery VC Element","2.8.0","\u003Cp>This plugin adds a WPBakery (VC) element for WP Gridbuilder.\u003Cbr \u002F>\nYou need to install WPBakery (Visual Composer) and WP Gridbuilder plugins before installing this plugin to be able to use these features.\u003C\u002Fp>\n","This plugin adds a WPBakery (VC) element for WP Gridbuilder.",40,3507,"2024-05-23T04:51:00.000Z","6.5.8","5.0","7.3",[28],"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-gridbuilder-wpbakery-vc-element.2.8.0.zip",{"slug":66,"name":67,"version":68,"author":4,"author_profile":5,"description":69,"short_description":70,"active_installs":57,"downloaded":71,"rating":31,"num_ratings":31,"last_updated":72,"tested_up_to":73,"requires_at_least":61,"requires_php":26,"tags":74,"homepage":29,"download_link":75,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-woody-snippets-helper","JVH Woody Snippets helper","1.2.2","\u003Cp>This plugin extends the Woody Snippets plugin. It will add the ability to add images to snippets and all library snippets will be on one page for easy access.\u003Cbr \u002F>\nYou need to install Woody Snippets before installing this plugin to be able to see any changes.\u003C\u002Fp>\n","This plugin extends the Woody Snippets plugin. It will add the ability to add images to snippets and all library snippets will be on one page for easy &hellip;",1503,"2021-08-04T12:36:00.000Z","5.8.13",[28],"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-woody-snippets-helper.1.2.2.zip",{"slug":77,"name":78,"version":79,"author":4,"author_profile":5,"description":80,"short_description":81,"active_installs":82,"downloaded":83,"rating":31,"num_ratings":31,"last_updated":84,"tested_up_to":60,"requires_at_least":61,"requires_php":62,"tags":85,"homepage":29,"download_link":86,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-css-classes","JVH CSS Classes","1.1.6","\u003Cp>This plugin adds a new CSS Classes Custom Post Type for WPBakery elements. This let you create classes and apply them on WPBakery elements.\u003Cbr \u002F>\nYou need to install WPBakery (Visual Composer) and Advanced Custom Fields plugins before installing this plugin to be able to use these features.\u003C\u002Fp>\n","This plugin adds a new CSS Classes Custom Post Type for WPBakery elements. This let you create classes and apply them on WPBakery elements.",10,1356,"2024-04-24T06:32:00.000Z",[28],"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-css-classes.1.1.6.zip",{"slug":88,"name":89,"version":90,"author":4,"author_profile":5,"description":91,"short_description":92,"active_installs":82,"downloaded":93,"rating":31,"num_ratings":31,"last_updated":94,"tested_up_to":73,"requires_at_least":61,"requires_php":62,"tags":95,"homepage":29,"download_link":96,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-vc-templates-essentials","JVH VC Templates Essentials","1.1.0","\u003Cp>This plugin adds the ability to create custom VC Templates for the Essentials theme.\u003Cbr \u002F>\nYou need to install the Essentials theme and ACF before installing this plugin to be able to use these features.\u003C\u002Fp>\n","This plugin adds the ability to create custom VC Templates for the Essentials theme.",894,"2021-12-18T10:50:00.000Z",[28],"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-vc-templates-essentials.1.1.0.zip",{"slug":98,"name":99,"version":100,"author":4,"author_profile":5,"description":101,"short_description":102,"active_installs":82,"downloaded":103,"rating":31,"num_ratings":31,"last_updated":104,"tested_up_to":73,"requires_at_least":61,"requires_php":62,"tags":105,"homepage":29,"download_link":106,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-wp-all-import-extender","JVH WP All Import Extender","1.4.2","\u003Cp>This plugin extends the WP All Import and Export plugins. It will add the ability to import Visual Composer single images, which are stored as id’s. It will also add the ability to import VC snippets, also stored with post_id.\u003Cbr \u002F>\nYou need to install WP All Import and WP All Export before installing this plugin to be able to use these features.\u003C\u002Fp>\n","This plugin extends the WP All Import and Export plugins. It will add the ability to import Visual Composer single images, which are stored as id&#039 &hellip;",1229,"2021-08-04T12:39:00.000Z",[28],"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-wp-all-import-extender.1.4.2.zip",{"slug":108,"name":109,"version":110,"author":4,"author_profile":5,"description":111,"short_description":112,"active_installs":31,"downloaded":113,"rating":31,"num_ratings":31,"last_updated":114,"tested_up_to":73,"requires_at_least":61,"requires_php":62,"tags":115,"homepage":29,"download_link":116,"security_score":8,"vuln_count":31,"unpatched_count":31,"last_vuln_date":32,"fetched_at":33},"jvh-import","JVH Import","1.2.3","\u003Cp>Import elements from JVH feed, such as Fluent Forms forms. Used internally within JVH webbouw.\u003Cbr \u002F>\nYou need to install Fluent Forms plugin before installing this plugin to be able to use these features.\u003C\u002Fp>\n","Import elements from JVH feed, such as Fluent Forms forms. Used internally within JVH webbouw.",1209,"2022-08-17T07:24:00.000Z",[28],"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjvh-import.1.2.3.zip"]