[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fz25TByMvDB1V56OR_ug73qn23WoMr13ltoWuK5w51_s":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":11,"computed_at":12,"plugins":13},"teamkcg","Kings Crest Global","https:\u002F\u002Fprofiles.wordpress.org\u002Fteamkcg\u002F",2,3000,100,30,94,"2026-04-04T07:02:57.259Z",[14,36],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":8,"downloaded":20,"rating":9,"num_ratings":7,"last_updated":21,"tested_up_to":22,"requires_at_least":23,"requires_php":24,"tags":25,"homepage":31,"download_link":32,"security_score":9,"vuln_count":33,"unpatched_count":33,"last_vuln_date":34,"fetched_at":35},"custom-permalink-editor","Custom Permalink Editor","1.0.6","\u003Cp>Custom Permalink Editor is a powerful yet simple plugin that allows you to create SEO-friendly custom URLs for your WordPress posts and pages. Perfect for content creators, marketers, and site owners who want complete control over their permalink structure.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Key Features:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>✓ \u003Cstrong>Easy Permalink Customization\u003C\u002Fstrong> – Change URLs for individual posts and pages with just a few clicks\u003Cbr \u002F>\n✓ \u003Cstrong>SEO-Friendly URLs\u003C\u002Fstrong> – Create clean, readable URLs that improve your search engine rankings\u003Cbr \u002F>\n✓ \u003Cstrong>No Global Changes\u003C\u002Fstrong> – Customize permalinks per post\u002Fpage without affecting your site’s default permalink structure\u003Cbr \u002F>\n✓ \u003Cstrong>Safe & Reversible\u003C\u002Fstrong> – Deactivating the plugin reverts all posts back to their default WordPress permalinks\u003Cbr \u002F>\n✓ \u003Cstrong>Categories & Tags Support\u003C\u002Fstrong> – Edit permalinks for categories and tags as well\u003Cbr \u002F>\n✓ \u003Cstrong>Custom Post Type Support\u003C\u002Fstrong> – Existing custom permalinks for custom post types continue to work (Pro version required for editing)\u003C\u002Fp>\n\u003Cp>\u003Cstrong>How It Works:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Col>\n\u003Cli>Install and activate the plugin\u003C\u002Fli>\n\u003Cli>Edit any post or page\u003C\u002Fli>\n\u003Cli>Find the Custom Permalink Editor box\u003C\u002Fli>\n\u003Cli>Enter your desired custom URL\u003C\u002Fli>\n\u003Cli>Save and publish – your new permalink is live!\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>\u003Cstrong>Perfect For:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Blog posts with specific keyword requirements\u003C\u002Fli>\n\u003Cli>Landing pages with marketing-friendly URLs\u003C\u002Fli>\n\u003Cli>Portfolio items with branded permalinks\u003C\u002Fli>\n\u003Cli>Product pages with clean, memorable URLs\u003C\u002Fli>\n\u003Cli>Migrating content from other platforms while maintaining URL structure\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Support\u003C\u002Fh3>\n\u003Cp>Need help or have questions? We’re here to assist you!\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Support Requests\u003C\u002Fstrong>: Use our \u003Ca href=\"https:\u002F\u002Fkingscrestglobal.com\u002Fcontact\u002F\" rel=\"nofollow ugc\">contact form\u003C\u002Fa> for technical support\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Custom Modifications\u003C\u002Fstrong>: Contact us for any custom development needs\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Feedback\u003C\u002Fstrong>: We value your feedback and suggestions for improvements\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Pro Version\u003C\u002Fstrong>: Interested in premium features? \u003Ca href=\"https:\u002F\u002Fkingscrestglobal.com\u002Fcontact\u002F\" rel=\"nofollow ugc\">Get in touch\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Privacy Policy\u003C\u002Fh3>\n\u003Cblockquote>\n\u003Cp>This plugin does not collect any user Information\u003Cbr \u002F>\n  If you need any custom modification or any other thing contact with https:\u002F\u002Fkingscrestglobal.com\u002F and mention Custom Permalink Editor\u003C\u002Fp>\n\u003C\u002Fblockquote>\n\u003Ch3>Advanced Filters\u003C\u002Fh3>\n\u003Cp>For developers who need more control, Custom Permalink Editor provides several filters to customize its behavior.\u003C\u002Fp>\n\u003Ch4>Add PATH_INFO in $_SERVER Variable\u003C\u002Fh4>\n\u003Cp>Enable PATH_INFO support in the $_SERVER variable. This is useful for certain server configurations.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Usage:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter( 'cp_editor_path_info', '__return_true' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Exclude Specific Permalinks\u003C\u002Fh4>\n\u003Cp>Prevent specific permalinks from being processed by the plugin. Useful for excluding system files like sitemaps or special pages.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example:\u003C\u002Fstrong> Exclude sitemap.xml from processing\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function team_kcg_exclude_permalink( $permalink ) {\n  \u002F\u002F Check if permalink contains 'sitemap.xml'\n  if ( false !== strpos( $permalink, 'sitemap.xml' ) ) {\n    return '__true';\n  }\n\n  return;\n}\nadd_filter( 'cp_editor_exclude_permalink', 'team_kcg_exclude_permalink' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Exclude Specific Post Types\u003C\u002Fh4>\n\u003Cp>Remove the Custom Permalink Editor form from specific post types. Helpful if you want to disable the feature for certain content types.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example:\u003C\u002Fstrong> Exclude a custom post type called ‘custompost’\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function team_kcg_exclude_post_type( $post_type ) {\n  \u002F\u002F Replace 'custompost' with your actual post type name\n  if ( 'custompost' === $post_type ) {\n    return '__true';\n  }\n\n  return '__false';\n}\nadd_filter( 'cp_editor_exclude_post_type', 'team_kcg_exclude_post_type' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Exclude Specific Posts\u003C\u002Fh4>\n\u003Cp>Exclude individual posts or pages from showing the Custom Permalink Editor form. You can filter by ID, template, or any post property.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example:\u003C\u002Fstrong> Exclude post with ID 1557\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function team_kcg_exclude_posts( $post ) {\n  \u002F\u002F Exclude specific post by ID\n  if ( 1557 === $post->ID ) {\n    return true;\n  }\n\n  \u002F\u002F You can also exclude by other criteria\n  \u002F\u002F Example: Exclude posts with a specific template\n  \u002F\u002F if ( get_page_template_slug( $post->ID ) === 'template-landing.php' ) {\n  \u002F\u002F   return true;\n  \u002F\u002F }\n\n  return false;\n}\nadd_filter( 'cp_editor_exclude_posts', 'team_kcg_exclude_posts' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Allow Accented Characters\u003C\u002Fh4>\n\u003Cp>By default, the plugin removes accents from permalinks for better URL compatibility. Enable this filter if you need to preserve accented characters.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Usage:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function team_kcg_allow_accents() {\n  return true;\n}\nadd_filter( 'cp_editor_allow_accents', 'team_kcg_allow_accents' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Allow Capital Letters\u003C\u002Fh4>\n\u003Cp>By default, permalinks are converted to lowercase. Use this filter to preserve capital letters in your custom URLs.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Usage:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function team_kcg_allow_capitals() {\n  return true;\n}\nadd_filter( 'cp_editor_allow_caps', 'team_kcg_allow_capitals' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Note:\u003C\u002Fstrong> Add these code snippets to your theme’s \u003Ccode>functions.php\u003C\u002Fcode> file or use a custom plugin\u002Fcode snippets plugin.\u003C\u002Fp>\n\u003Ch3>How To Use\u003C\u002Fh3>\n\u003Cp>\u003Cstrong>Changing a Post or Page Permalink:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Col>\n\u003Cli>Navigate to Posts > All Posts (or Pages > All Pages)\u003C\u002Fli>\n\u003Cli>Click on the post\u002Fpage you want to edit\u003C\u002Fli>\n\u003Cli>Scroll down to find the “Custom Permalink Editor” meta box\u003C\u002Fli>\n\u003Cli>Enter your desired custom URL in the text field (without the domain)\u003C\u002Fli>\n\u003Cli>Click “Update” or “Publish” to save your changes\u003C\u002Fli>\n\u003Cli>Visit your post to see the new permalink in action!\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>\u003Cstrong>Example:\u003C\u002Fstrong>\u003Cbr \u002F>\n– Default URL: \u003Ccode>yoursite.com\u002F2026\u002F01\u002F11\u002Fmy-blog-post\u002F\u003C\u002Fcode>\u003Cbr \u002F>\n– Custom URL: \u003Ccode>yoursite.com\u002Fseo-friendly-custom-url\u002F\u003C\u002Fcode>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Reverting to Default Permalinks:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Simply deactivate the plugin and all posts will automatically revert to WordPress default permalink structure.\u003C\u002Fp>\n","Set Custom Permalink Editor on a per-post, per-tag per-page, and per-category basis.",11220,"2026-01-13T10:09:00.000Z","6.9.4","5.4","7.4",[26,27,28,29,30],"custom-permalinks","custom-url","permalink","permalinks","url","https:\u002F\u002Fkingscrestglobal.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcustom-permalink-editor.1.0.6.zip",0,null,"2026-03-15T15:16:48.613Z",{"slug":37,"name":38,"version":39,"author":5,"author_profile":6,"description":40,"short_description":41,"active_installs":33,"downloaded":42,"rating":33,"num_ratings":33,"last_updated":43,"tested_up_to":22,"requires_at_least":44,"requires_php":24,"tags":45,"homepage":51,"download_link":52,"security_score":9,"vuln_count":33,"unpatched_count":33,"last_vuln_date":34,"fetched_at":35},"captura-ai-chatbot-for-lead-generation-call-booking","Captura – AI Chatbot for Lead Generation & Call Booking","1.0.0","\u003Cp>Captura is an AI-powered chatbot plugin that integrates Google’s Gemini AI to provide intelligent, automated customer support on your WordPress website. The chatbot can answer visitor questions, generate leads, and provide 24\u002F7 customer assistance.\u003C\u002Fp>\n\u003Cp>Get Pro Version: \u003Ca href=\"https:\u002F\u002Fkingscrestglobal.com\u002Fcontact\u002F\" rel=\"nofollow ugc\">https:\u002F\u002Fkingscrestglobal.com\u002Fcontact\u002F\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Key Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>AI-powered responses using Google Gemini\u003C\u002Fli>\n\u003Cli>Custom knowledge base from your WordPress content\u003C\u002Fli>\n\u003Cli>Real-time chat interface\u003C\u002Fli>\n\u003Cli>Conversation history and analytics\u003C\u002Fli>\n\u003Cli>Customizable chatbot appearance\u003C\u002Fli>\n\u003Cli>Lead capture and contact management\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>External Services\u003C\u002Fh3>\n\u003Cp>This plugin uses the Google Gemini API to provide AI-powered chatbot functionality and content indexing features.\u003C\u002Fp>\n\u003Ch4>Google Gemini API\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>What it does:\u003C\u002Fstrong>\u003Cbr \u002F>\nThe plugin connects to Google’s Gemini API to:\u003Cbr \u002F>\n– Generate chatbot responses to user questions\u003Cbr \u002F>\n– Create vector embeddings for content indexing\u003Cbr \u002F>\n– Process and understand natural language queries\u003C\u002Fp>\n\u003Cp>\u003Cstrong>When data is sent:\u003C\u002Fstrong>\u003Cbr \u002F>\n– When a website visitor sends a message through the chatbot\u003Cbr \u002F>\n– When site administrators index content (posts\u002Fpages) into the knowledge base\u003Cbr \u002F>\n– When the chatbot searches for relevant content to answer questions\u003C\u002Fp>\n\u003Cp>\u003Cstrong>What data is sent:\u003C\u002Fstrong>\u003Cbr \u002F>\n– User messages\u002Fquestions submitted through the chatbot\u003Cbr \u002F>\n– Website content (post titles, excerpts, and content) when indexing is performed\u003Cbr \u002F>\n– API key for authentication\u003Cbr \u002F>\n– No personally identifiable information (PII) is sent without user consent\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Service Provider:\u003C\u002Fstrong>\u003Cbr \u002F>\nGoogle LLC\u003C\u002Fp>\n\u003Cp>\u003Cstrong>API Endpoint:\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fgenerativelanguage.googleapis.com\u002Fv1beta\u002Fmodels\u002F\" rel=\"nofollow ugc\">https:\u002F\u002Fgenerativelanguage.googleapis.com\u002Fv1beta\u002Fmodels\u002F\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Terms of Service:\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fpolicies.google.com\u002Fterms\" rel=\"nofollow ugc\">https:\u002F\u002Fpolicies.google.com\u002Fterms\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Privacy Policy:\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fpolicies.google.com\u002Fprivacy\" rel=\"nofollow ugc\">https:\u002F\u002Fpolicies.google.com\u002Fprivacy\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Gemini API Terms of Service:\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fai.google.dev\u002Fgemini-api\u002Fterms\" rel=\"nofollow ugc\">https:\u002F\u002Fai.google.dev\u002Fgemini-api\u002Fterms\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Note:\u003C\u002Fstrong> Users must provide their own Google Gemini API key. By using this plugin, you agree to Google’s terms of service and privacy policy. The plugin does not store or transmit user data except as necessary to communicate with the Gemini API.\u003C\u002Fp>\n\u003Ch3>Privacy & Data\u003C\u002Fh3>\n\u003Cp>This plugin connects to Google’s Gemini API. Please review:\u003Cbr \u002F>\n– Our plugin does not collect user data beyond what’s necessary for chatbot functionality\u003Cbr \u002F>\n– All data sent to Gemini API is governed by Google’s privacy policy\u003Cbr \u002F>\n– Users should review Google’s terms before using this plugin\u003Cbr \u002F>\n– Site administrators are responsible for informing their visitors about AI chatbot usage\u003C\u002Fp>\n\u003Cp>For GDPR compliance, we recommend:\u003Cbr \u002F>\n– Adding information about the chatbot to your privacy policy\u003Cbr \u002F>\n– Informing users that their messages are processed by Google’s AI\u003Cbr \u002F>\n– Obtaining user consent where required by law\u003C\u002Fp>\n","AI-powered chatbot using Google Gemini API for automated customer support and lead generation.",103,"2026-01-09T15:03:00.000Z","6.6",[46,47,48,49,50],"ai","chatbot","customer-support","gemini","lead-generation","https:\u002F\u002Fkingscrestglobal.com\u002Fcontact","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcaptura-ai-chatbot-for-lead-generation-call-booking.1.0.0.zip"]