[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$faywybtmoJLbYonuw18O8DQ6ga6vf8i6bFYtUctLAJY8":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":18,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":31,"crawl_stats":28,"alternatives":38,"analysis":130,"fingerprints":175},"crazy-pills","Crazy Pills","0.4.3","shazdeh","https:\u002F\u002Fprofiles.wordpress.org\u002Fshazdeh\u002F","\u003Cp>Stop the shortcode madness with Crazy Pills. This plugin helps you to build buttons, notification boxes, check & bullet lists, and highlight the text without using shortcodes. It generates clean and pure HTML. Best of all, you can see what it’ll look like as you’re editing your text.\u003C\u002Fp>\n\u003Cp>RTL layout is supported. Also compatible with frontend editor tools that support TinyMCE, like Themify Builder.\u003C\u002Fp>\n\u003Ch4>How to extend the plugin\u003C\u002Fh4>\n\u003Cp>You can modify, and add or remove what buttons with which color styles appear in the editor by copying the includes\u002Fconfig.php file inside the plugin to \u002Fplugins\u002Fcrazy-pills\u002Fconfig.php and modifying that file.\u003C\u002Fp>\n","Build buttons, boxes, beautiful lists, and highlight text right from your editor, with live preview.",100,7795,96,5,"2017-06-25T12:44:00.000Z","4.8.28","3.9","",[20,21,22,23,24],"button","editor","shortcodes","styles","tinymce","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcrazy-pills.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":33,"avg_security_score":34,"avg_patch_time_days":35,"trust_score":36,"computed_at":37},24,4480,86,30,84,"2026-04-04T10:34:08.673Z",[39,59,80,98,115],{"slug":40,"name":41,"version":42,"author":43,"author_profile":44,"description":45,"short_description":46,"active_installs":47,"downloaded":48,"rating":49,"num_ratings":50,"last_updated":51,"tested_up_to":52,"requires_at_least":53,"requires_php":18,"tags":54,"homepage":57,"download_link":58,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"addquicktag","AddQuicktag","2.6.1","Frank Bueltge","https:\u002F\u002Fprofiles.wordpress.org\u002Fbueltge\u002F","\u003Cp>This plugin makes it easy to add Quicktags to the html – and visual-editor. It is possible to export your Quicktags as a JSON – file that can be imported in other installations of the plugin.\u003C\u002Fp>\n\u003Cp>WP-AddQuicktag for WordPress is originally created by \u003Ca href=\"http:\u002F\u002Froel.meurders.nl\u002F\" title=\"Roel Meurders\" rel=\"nofollow ugc\">Roel Meurders\u003C\u002Fa>. The versions in the Repo of AddQuicktag are newer versions, this is a complete rewrite of version 2.0.0 with more functionality.\u003C\u002Fp>\n\u003Cp>The plugin can add configurable custom quicktags to the editor of every post type, including custom post types from other sources. You may choose a post type for which a quicktag shall show up in the editor.\u003Cbr \u002F>\nIf this should not work perfectly well for you, you may also use the hooks inside the plugin. See the examples and hint inside the tab “\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Faddquicktag\u002Fother_notes\u002F\" rel=\"ugc\">Other Notes\u003C\u002Fa>“.\u003C\u002Fp>\n\u003Ch4>Bugs, technical hints or contribute\u003C\u002Fh4>\n\u003Cp>Please give me feedback, contribute and file technical bugs on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fbueltge\u002Faddquicktag\" rel=\"nofollow ugc\">GitHub Repo\u003C\u002Fa>. The Wiki on this page has also several hints for the plugin.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Crafted by \u003Ca href=\"https:\u002F\u002Finpsyde.com\" rel=\"nofollow ugc\">Inpsyde\u003C\u002Fa> · Engineering the web since 2006.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>Hook for custom post types\u003C\u002Fh4>\n\u003Cp>The plugin adds the quicktag by default to post types\u002FID \u003Ccode>post\u003C\u002Fcode>, \u003Ccode>page\u003C\u002Fcode> and \u003Ccode>comment\u003C\u002Fcode>. To use the plugin for other post types also you may use a filter; see the following example or an example plugin in the \u003Ca href=\"https:\u002F\u002Fgist.github.com\u002F1595155\" rel=\"nofollow ugc\">Gist 1595155\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F add custom function to filter hook 'addquicktag_post_types'\nadd_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );\n\u002F**\n * Return array $post_types with custom post types\n *\n * @param   $post_type Array\n * @return  $post_type Array\n *\u002F\nfunction my_addquicktag_post_types( $post_types ) {\n\n    $post_types[] = 'edit-comments';\n    return $post_types;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Hook for custom pages\u003C\u002Fh4>\n\u003Cp>It is possible also to filter the pages inside the backend. By default the scripts include the pages \u003Ccode>post.php\u003C\u002Fcode>, \u003Ccode>comment.php\u003C\u002Fcode>. The following example changes this for an another page.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'addquicktag_pages', 'my_addquicktag_pages' );\n\u002F**\n * Return array $page with custom page strings\n *\n * @param   $page Array\n * @return  $page Array\n *\u002F\nfunction my_addquicktag_pages( $page ) {\n\n    $page[] = 'edit-comments.php';\n    return $page;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>See this Gist as an example for how to add the Quicktags to the editor of comments: \u003Ca href=\"https:\u002F\u002Fgist.github.com\u002F3076698\" rel=\"nofollow ugc\">Gist: 3076698\u003C\u002Fa>.\u003Cbr \u002F>\nIf you want the Quicktags of this plugin to work on the Quickedit of comments as well, remove the \u003Ccode>.example\u003C\u002Fcode>-part of \u003Ccode>addquicktag_quickedit_comment.php.example\u003C\u002Fcode> filename. The file is a stand alone helper plugin for Add Quicktag. You’ll need to activate this file (plugin) separately in ‘Manage Plugins’.\u003C\u002Fp>\n\u003Ch4>Hook for custom buttons\u003C\u002Fh4>\n\u003Cp>It is possible to add custom buttons to the editor, if the plugin is active.\u003C\u002Fp>\n\u003Cp>The following example adds buttons. The params inside the array are the same as in the settings of the plugin.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>if ( class_exists( 'Add_Quicktag' ) ) :\nadd_filter( 'addquicktag_buttons', 'my_addquicktag_buttons' );\n\nfunction my_addquicktag_buttons( $buttons ) {\n\n    $buttons[] = array(\n        'text'          => 'Permalink',\n        'title'         => '',\n        'start'         => '[permalink]',\n        'end'           => '[\u002Fpermalink]',\n        'access'        => '',\n        'order'         => 1,\n        'visual'        => 1,\n        'post'          => 0,\n        'page'          => 1,\n        'comment'       => 0,\n        'edit-comments' => 0\n    );\n    $buttons[] = array(\n        'text'          => 'Button',\n        'title'         => '',\n        'start'         => '\u003Cspan class=\"border blue\">',\n        'end'           => '\u003C\u002Fspan>',\n        'access'        => '',\n        'order'         => 2,\n        'visual'        => 1,\n        'post'          => 0,\n        'page'          => 1,\n        'comment'       => 0,\n        'edit-comments' => 0\n    );\n    return $buttons;\n}\nendif;\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>License\u003C\u002Fh4>\n\u003Cp>Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you may consider to thank me and leave a \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Faddquicktag\u002Freviews\u002F#new-post\" rel=\"ugc\">positive review\u003C\u002Fa> for the time I’ve spent writing and supporting this plugin. And I really don’t want to know how many hours of my life this plugin has already eaten 😉\u003C\u002Fp>\n","This plugin makes it easy to add Quicktags to the html - and visual-editor.",100000,1385273,94,44,"2021-05-20T13:37:00.000Z","5.7.15","4.0",[55,20,21,56,24],"add-buttons","quicktag","http:\u002F\u002Fbueltge.de\u002Fwp-addquicktags-de-plugin\u002F120\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Faddquicktag.2.6.1.zip",{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":13,"num_ratings":69,"last_updated":70,"tested_up_to":71,"requires_at_least":72,"requires_php":18,"tags":73,"homepage":18,"download_link":76,"security_score":77,"vuln_count":78,"unpatched_count":78,"last_vuln_date":79,"fetched_at":29},"just-tinymce-styles","Just TinyMCE Custom Styles","1.2.1","Alex Prokopenko \u002F JustCoded","https:\u002F\u002Fprofiles.wordpress.org\u002Faprokopenko\u002F","\u003Cp>This plugin controls the TinyMce “style_formats” parameter. It allows adding custom formatters to the Wysiwyg editor.\u003C\u002Fp>\n\u003Cp>This is only a user interface to the standard feature, which is disabled by default and explained in the official\u003Cbr \u002F>\ndocumentation on codex.wordpress.org: https:\u002F\u002Fcodex.wordpress.org\u002FTinyMCE_Custom_Styles\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Load Settings from DB or .json file from theme\u003C\u002Fli>\n\u003Cli>Enable\u002FDisable some style_format features for more clean formatting\u003C\u002Fli>\n\u003Cli>Nice interface to quickly add your formats\u003C\u002Fli>\n\u003Cli>Ability to apply custom editor css for each rule separately\u003C\u002Fli>\n\u003Cli>You can group your styles for more clear usage\u003C\u002Fli>\n\u003Cli>Bootstrap preset: pre-defined bootstrap styles for editor.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Example: Custom link class\u003C\u002Fh4>\n\u003Cp>For example, you can define an addition dropdown option of the css classes for the link tag.\u003Cbr \u002F>\nTo do so, create such row formatter:.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Title: My Link Style\u003C\u002Fli>\n\u003Cli>Selector: a\u003C\u002Fli>\n\u003Cli>Classes: my-link-style\u003C\u002Fli>\n\u003Cli>Editor CSS: a.my-link-style { color:red; }\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Plugin Demo\u003C\u002Fh4>\n\u003Cp>\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ffljkfet52eg?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\u003C\u002Fp>\n\u003Ch4>Presets\u003C\u002Fh4>\n\u003Cp>We added special feature called “Presets” – these are pre-defined styles included inside the plugin.\u003Cbr \u002F>\nYou can import them to your site with a single click.\u003C\u002Fp>\n\u003Cp>With presets we plan to add popular CSS framework classes to be able to use them inside the editor.\u003Cbr \u002F>\nWe started with a Bootstrap preset, because it’s one of the most popular CSS framework right now.\u003C\u002Fp>\n\u003Ch4>ISSUES TRACKER\u003C\u002Fh4>\n\u003Cp>If you have any feedbacks or bugs found, please write to our GitHub issues tracker:\u003Cbr \u002F>\nhttps:\u002F\u002Fgithub.com\u002Fjustcoded\u002Fjust-tinymce-custom-styles\u002Fissues\u003C\u002Fp>\n","Adds dropdown options for custom css classes and attributes for tags in WordPress TinyMCE Editor.",2000,19562,6,"2020-08-14T13:12:00.000Z","5.5.18","4.3",[74,21,75,23,24],"custom-styles","link-class","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjust-tinymce-styles.zip",63,1,"2025-12-08 00:00:00",{"slug":81,"name":82,"version":83,"author":84,"author_profile":85,"description":86,"short_description":87,"active_installs":88,"downloaded":89,"rating":11,"num_ratings":90,"last_updated":91,"tested_up_to":92,"requires_at_least":17,"requires_php":18,"tags":93,"homepage":96,"download_link":97,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"tinymce-table","TinyMCE Table","1.0","Gary PEGEOT","https:\u002F\u002Fprofiles.wordpress.org\u002Fgary-pegeot\u002F","\u003Cp>Fr:\u003Cbr \u002F>\nAjoute la création et l’édition des tables à TinyMCE.\u003C\u002Fp>\n\u003Cp>Un bouton permettant de créer ou de modifier les tables existantes apparait dans l’éditeur.\u003C\u002Fp>\n\u003Cp>En:\u003Cbr \u002F>\nAllow you to create and\u002For modify tables through TinyMCE editor.\u003C\u002Fp>\n\u003Cp>** TinyMCE plugin version: 4.1.1\u003C\u002Fp>\n","Ajoute la création et l'édition des tables à TinyMCE",700,6016,2,"2014-07-17T11:48:00.000Z","3.9.40",[20,21,94,95,24],"table","tables","http:\u002F\u002Fwordpress.org\u002Fplugins\u002Ftinymce-table\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftinymce-table.zip",{"slug":99,"name":100,"version":101,"author":102,"author_profile":103,"description":104,"short_description":105,"active_installs":106,"downloaded":107,"rating":11,"num_ratings":78,"last_updated":108,"tested_up_to":16,"requires_at_least":109,"requires_php":18,"tags":110,"homepage":18,"download_link":114,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"manage-tinymce-editor","Manage TinyMCE Editor","1.0.0","Daniele De Santis","https:\u002F\u002Fprofiles.wordpress.org\u002Fdanieledesantis\u002F","\u003Cp>WordPress Manage TinyMCE Editor allows you to \u003Cstrong>add buttons to WordPress TinyMCE editor\u003C\u002Fstrong>.\u003Cbr \u002F>\nUsing the plugin you will be able to add the following buttons to the default WordPress visual editor:\u003C\u002Fp>\n\u003Cp>Cut\u003Cbr \u002F>\nCopy\u003Cbr \u002F>\nPaste\u003Cbr \u002F>\nSource code\u003Cbr \u002F>\nFont family selector\u003Cbr \u002F>\nFont size selector\u003Cbr \u002F>\nStyle selector\u003Cbr \u002F>\nBackground color\u003Cbr \u002F>\nEmpty document\u003Cbr \u002F>\nSuperscript\u003Cbr \u002F>\nSubscript\u003C\u002Fp>\n\u003Cp>Select the desired buttons in the plugin’s settings page and they will be available in TinyMCE.\u003C\u002Fp>\n","Add buttons to TinyMCE, WordPress' default visual editor.",200,4479,"2017-07-13T11:19:00.000Z","4.8",[21,111,112,24,113],"editor-buttons","text-editor","visual-editor","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmanage-tinymce-editor.1.0.0.zip",{"slug":116,"name":117,"version":83,"author":118,"author_profile":119,"description":120,"short_description":121,"active_installs":106,"downloaded":122,"rating":27,"num_ratings":27,"last_updated":123,"tested_up_to":124,"requires_at_least":125,"requires_php":18,"tags":126,"homepage":18,"download_link":129,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"safer-email-link","Safer Email Link","Andrew Norcross","https:\u002F\u002Fprofiles.wordpress.org\u002Fnorcross\u002F","\u003Cp>Adds a button to the TinyMCE to wrap an email address with a shortcode using the WordPress antispambot function.\u003C\u002Fp>\n","Adds a button to the TinyMCE to wrap an email address with a shortcode using the WordPress antispambot function.",3722,"2011-12-20T00:46:00.000Z","3.3.2","2.5",[24,127,128],"twitter","visual-editor-button","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsafer-email-link.zip",{"attackSurface":131,"codeSignals":163,"taintFlows":170,"riskAssessment":171,"analyzedAt":174},{"hooks":132,"ajaxHandlers":159,"restRoutes":160,"shortcodes":161,"cronEvents":162,"entryPointCount":27,"unprotectedCount":27},[133,139,142,146,150,153,156],{"type":134,"name":135,"callback":136,"file":137,"line":138},"action","init","add_buttons","init.php",16,{"type":134,"name":135,"callback":140,"file":137,"line":141},"i18n",17,{"type":134,"name":143,"callback":144,"file":137,"line":145},"wp_enqueue_scripts","enqueue",18,{"type":147,"name":148,"callback":148,"file":137,"line":149},"filter","mce_external_plugins",37,{"type":147,"name":151,"callback":151,"file":137,"line":152},"mce_buttons_2",38,{"type":134,"name":154,"callback":154,"file":137,"line":155},"wp_enqueue_editor",39,{"type":147,"name":157,"callback":157,"file":137,"line":158},"mce_css",40,[],[],[],[],{"dangerousFunctions":164,"sqlUsage":165,"outputEscaping":167,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":90,"bundledLibraries":169},[],{"prepared":27,"raw":27,"locations":166},[],{"escaped":27,"rawEcho":27,"locations":168},[],[],[],{"summary":172,"deductions":173},"The 'crazy-pills' v0.4.3 plugin exhibits a strong security posture based on the provided static analysis. There are no identified AJAX handlers, REST API routes, shortcodes, or cron events, significantly limiting the potential attack surface. Furthermore, the code signals indicate a diligent approach to security, with no dangerous functions, all SQL queries utilizing prepared statements, and all outputs being properly escaped.  The absence of file operations and external HTTP requests further reduces potential vulnerabilities. The plugin also implements capability checks, demonstrating an awareness of access control. Taint analysis shows zero flows with unsanitized paths, indicating no critical or high severity security flaws related to data handling within the analyzed code.",[],"2026-03-16T20:33:04.361Z",{"wat":176,"direct":186},{"assetPaths":177,"generatorPatterns":181,"scriptPaths":182,"versionParams":183},[178,179,180],"\u002Fwp-content\u002Fplugins\u002Fcrazy-pills\u002Fcss\u002Fstyles.css","\u002Fwp-content\u002Fplugins\u002Fcrazy-pills\u002Fcss\u002Fadmin.css","\u002Fwp-content\u002Fplugins\u002Fcrazy-pills\u002Fjs\u002Feditor.js",[],[180],[184,185],"crazy-pills\u002Fcss\u002Fstyles.css?ver=0.4.3","crazy-pills\u002Fcss\u002Fadmin.css?ver=0.4.3",{"cssClasses":187,"htmlComments":188,"htmlAttributes":189,"restEndpoints":190,"jsGlobals":191,"shortcodeOutput":193},[],[],[],[],[192],"crazyPills",[]]