[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$feyXhQ-HGErpOdBoZpp0hXsy7vfSHBLnZ0ksug9z6hG0":3,"$ftSakp94KlhPRozQd2Ya3rwZDQuLgAYF8TnQIlBxikRw":231,"$fQnZPnKCTwwWMK9XqHy86onimCSyRv_yPIgZAsvYy8Rk":236},{"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":25,"download_link":26,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30,"discovery_status":31,"vulnerabilities":32,"developer":33,"crawl_stats":29,"alternatives":40,"analysis":142,"fingerprints":200},"force-admin-color-scheme","Force Admin Color Scheme","2.1","Scott Reilly","https:\u002F\u002Fprofiles.wordpress.org\u002Fcoffee2code\u002F","\u003Cp>Though it is typically an individually configurable aspect of WordPress, there are times when forcing a single admin color scheme upon all users of a site can be warranted, such as to:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Provide a unique backend color scheme for multiple sites used by the same set of users to reinforce the difference between the sites.\u003C\u002Fli>\n\u003Cli>Clearly denote backend differences between a production and staging\u002Ftest instance of a site. Especially given that in this situation with the same plugins active and often the same data present, it can be easy to get mixed up about what site you’re actually on.\u003C\u002Fli>\n\u003Cli>Force a site brand-appropriate color scheme.\u003C\u002Fli>\n\u003Cli>Crush the expression of individuality under your iron fist.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Additionally, the plugin removes the “Admin Color Scheme” profile setting from users who don’t have the capability to set the admin color scheme globally since being able to set its value gives them the false impression that it may actually apply.\u003C\u002Fp>\n\u003Cp>Links: \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fforce-admin-color-scheme\u002F\" rel=\"nofollow ugc\">Plugin Homepage\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fforce-admin-color-scheme\u002F\" rel=\"ugc\">Plugin Directory Page\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoffee2code\u002Fforce-admin-color-scheme\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\" rel=\"nofollow ugc\">Author Homepage\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Hooks\u003C\u002Fh3>\n\u003Cp>The plugin is further customizable via one filter. Typically, code making use of filters should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain).\u003C\u002Fp>\n\u003Cp>\u003Cstrong>c2c_force_admin_color_scheme (filter)\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The ‘c2c_force_admin_color_scheme’ filter allows you to set or override the forced admin color scheme. Use of the constant (“) takes priority over the filtered value, but the filtered value takes priority over the value set via the admin.\u003C\u002Fp>\n\u003Cp>Arguments:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$color (string): The name of the admin color scheme. If an empty string is returned, then the plugin will behave as if no forced admin color scheme has been defined.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Sets a forced admin color scheme based on user. Admins get one color scheme, whereas everyone else gets another.\n *\n * @param string $color The current forced admin color scheme. Empty string indicates no forced admin color scheme.\n * @return string\n *\u002F\nfunction my_c2c_force_admin_color_scheme( $color ) {\n    return current_user_can( 'manage_options' ) ? 'sunrise' : 'coffee';\n}\nadd_filter( 'c2c_force_admin_color_scheme', 'my_c2c_force_admin_color_scheme' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Force a single admin color scheme for all users of the site.",600,10292,100,2,"2025-04-17T19:49:00.000Z","6.8.5","4.1","",[20,21,22,23,24],"admin","admin-colors","coffee2code","color-scheme","staging","https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fforce-admin-color-scheme\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.2.1.zip",92,0,null,"2026-04-16T10:56:18.058Z","no_bundle",[],{"slug":22,"display_name":7,"profile_url":8,"plugin_count":34,"total_installs":35,"avg_security_score":36,"avg_patch_time_days":37,"trust_score":38,"computed_at":39},63,91830,88,374,71,"2026-05-19T20:15:30.823Z",[41,62,83,105,123],{"slug":42,"name":43,"version":44,"author":7,"author_profile":8,"description":45,"short_description":46,"active_installs":47,"downloaded":48,"rating":49,"num_ratings":50,"last_updated":51,"tested_up_to":16,"requires_at_least":52,"requires_php":18,"tags":53,"homepage":57,"download_link":58,"security_score":59,"vuln_count":60,"unpatched_count":28,"last_vuln_date":61,"fetched_at":30},"one-click-close-comments","One Click Close Comments","3.0","\u003Cp>From the admin listing of posts (‘Edit Posts’) and pages (‘Edit Pages’), a user can close or open comments to any posts to which they have sufficient privileges to make such changes (essentially admins and post authors for their own posts). This is done via an AJAX-powered color-coded indicator. The color-coding gives instant feedback on the current status of the post for comments: green means the post\u002Fpage is open to comments, red means the post\u002Fpage is closed to comments. Being AJAX-powered means that the change is submitted in the background after being clicked without requiring a page reload.\u003C\u002Fp>\n\u003Cp>This plugin will only function for administrative users in the admin who have JavaScript enabled.\u003C\u002Fp>\n\u003Cp>Links: \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fone-click-close-comments\u002F\" rel=\"nofollow ugc\">Plugin Homepage\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fone-click-close-comments\u002F\" rel=\"ugc\">Plugin Directory Page\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoffee2code\u002Fone-click-close-comments\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\" rel=\"nofollow ugc\">Author Homepage\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Developer Documentation\u003C\u002Fh3>\n\u003Cp>Developer documentation can be found in \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoffee2code\u002Fone-click-close-comments\u002Fblob\u002Fmaster\u002FDEVELOPER-DOCS.md\" rel=\"nofollow ugc\">DEVELOPER-DOCS.md\u003C\u002Fa>. That documentation covers the hooks provided by the plugin.\u003C\u002Fp>\n\u003Cp>As an overview, these are the hooks provided by the plugin:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>c2c_one_click_close_comments_click_char\u003C\u002Fcode> : Filter to customize the character, string, or markup used as the indicator used to toggle a post’s comment status.\u003C\u002Fli>\n\u003C\u002Ful>\n","Conveniently close or open comments for a post or page with one click from the admin listing of posts.",6000,160184,98,10,"2025-04-17T20:29:00.000Z","4.7",[20,22,54,55,56],"comment","comments","status","https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fone-click-close-comments\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fone-click-close-comments.3.0.zip",91,1,"2024-07-26 13:12:00",{"slug":63,"name":64,"version":65,"author":66,"author_profile":67,"description":68,"short_description":69,"active_installs":70,"downloaded":71,"rating":27,"num_ratings":72,"last_updated":73,"tested_up_to":74,"requires_at_least":75,"requires_php":76,"tags":77,"homepage":81,"download_link":82,"security_score":13,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"default-admin-color-scheme","Default Admin Color Scheme","1.0.3","Plugin Pizza","https:\u002F\u002Fprofiles.wordpress.org\u002Fpluginpizza\u002F","\u003Cp>Select a default admin color scheme for new and existing users. Optionally disable the color scheme picker to force a color scheme for all users.\u003C\u002Fp>\n\u003Cp>By default, WordPress uses the ‘Default’ color scheme unless a user has selected another color scheme on their profile settings page.\u003C\u002Fp>\n\u003Cp>Default Admin Color Scheme adds a color scheme picker to the ‘General’ settings page where you can change the default color scheme for all users.\u003C\u002Fp>\n\u003Ch3>Force an admin color scheme for all users?\u003C\u002Fh3>\n\u003Cp>An additional option allows you to remove the admin color scheme picker from each user’s ‘Profile’ settings page. Using this option results in all users seeing the same color scheme in the WordPress admin.\u003C\u002Fp>\n\u003Ch3>Bug Reports\u003C\u002Fh3>\n\u003Cp>Do you want to report a bug or suggest a feature for Default Admin Color Scheme? Best to do so in the Default Admin Color Scheme \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpluginpizza\u002Fdefault-admin-color-scheme\u002F\" rel=\"nofollow ugc\">repository on GitHub\u003C\u002Fa>.\u003C\u002Fp>\n","Select a default admin color scheme for new and existing users. Optionally disable the color scheme picker to force a color scheme for all users.",700,13638,8,"2026-01-02T11:10:00.000Z","6.9.4","3.8","5.3",[20,78,23,79,80],"branding","custom-dashboard","dashboard","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdefault-admin-color-scheme","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdefault-admin-color-scheme.1.0.3.zip",{"slug":84,"name":85,"version":86,"author":87,"author_profile":88,"description":89,"short_description":90,"active_installs":91,"downloaded":92,"rating":93,"num_ratings":72,"last_updated":94,"tested_up_to":95,"requires_at_least":96,"requires_php":18,"tags":97,"homepage":102,"download_link":103,"security_score":104,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"colorize-admin","Colorize Admin","2.0","Simple Themes","https:\u002F\u002Fprofiles.wordpress.org\u002Fartcreativeme\u002F","\u003Cp>This is a simple plugin that will make your wp admin panel theme much more pleasant for work. Using specific colours you improve your work surrounding and simple and clean design of your wp admin panel.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>30 color themes.\u003C\u002Fli>\n\u003Cli>Tested with other popular plugins.\u003C\u002Fli>\n\u003Cli>last update 8\u002F5\u002F2019\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Video:\u003Cbr \u002F>\nhttps:\u002F\u002Fwww.youtube.com\u002Fwatch?v=usB0PPeEczw\u003C\u002Fp>\n","This is a simple plugin that will make your wp admin panel theme much more pleasant for work.",200,8078,96,"2019-08-05T10:24:00.000Z","5.2.24","4.0",[98,99,23,100,101],"admin-color","admin-theme","colorize","scheme","http:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcolorize-admin","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcolorize-admin.zip",85,{"slug":106,"name":107,"version":108,"author":109,"author_profile":110,"description":111,"short_description":112,"active_installs":91,"downloaded":113,"rating":13,"num_ratings":60,"last_updated":114,"tested_up_to":16,"requires_at_least":115,"requires_php":116,"tags":117,"homepage":121,"download_link":122,"security_score":13,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"easybackendstyle","Easy Backend-Style","2.2.4","FARN Labs","https:\u002F\u002Fprofiles.wordpress.org\u002Ffarndesign\u002F","\u003Cp>Seamlessly adjust color schemes, effortlessly transforming the look and feel of your backend interface.\u003Cbr \u002F>\nWith an automated color generation feature from just two base colors, achieving a cohesive design is a breeze.\u003Cbr \u002F>\nDive deeper into customization with advanced fields, allowing precise adjustments to fine-tune your backend’s appearance.\u003Cbr \u002F>\nThis plugin seamlessly integrates with all WordPress backend styles, ensuring a consistent experience across the board.\u003C\u002Fp>\n\u003Cp>** Plugin Demo **\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=82_csWeNwFc\" rel=\"nofollow ugc\">Demo Video\u003C\u002Fa>\u003C\u002Fp>\n\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\u002F82_csWeNwFc?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>\n","This plugin allows you to easily customize the colors in the backend. The changes are easily made via predefined fields.",4466,"2025-06-09T15:08:00.000Z","6.0","8.0",[99,118,23,119,120],"backend-theme","customize-design","wordpress-customization","https:\u002F\u002Fgithub.com\u002Ffarndesign\u002FeasyBackendStyle","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Feasybackendstyle.2.2.4.zip",{"slug":124,"name":125,"version":126,"author":127,"author_profile":128,"description":129,"short_description":130,"active_installs":13,"downloaded":131,"rating":28,"num_ratings":28,"last_updated":132,"tested_up_to":133,"requires_at_least":134,"requires_php":135,"tags":136,"homepage":140,"download_link":141,"security_score":13,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"apex-digital-toolbox","Apex Digital Toolbox","1.5.0","nwells","https:\u002F\u002Fprofiles.wordpress.org\u002Fnwells\u002F","\u003Cp>Too many plugins installed to do basic things? This plugin tries to bring some common ones into one plugin to make life that little bit easier.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Current functionality\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Identify the production URL so as to apply specific logic or hooks depending on which environment the site is in\u003C\u002Fli>\n\u003Cli>Block visitors to the staging site based on IP or by using a specific cookie – great for showing clients but not the world\u003C\u002Fli>\n\u003Cli>Find & replace functionality – great for changing from a staging URL to a production URL\u003C\u002Fli>\n\u003Cli>Auto 301 redirect to the site domain for WordPress – useful to ensure everyone is using the correct path i.e. with www (or not) and https (or not)\u003C\u002Fli>\n\u003Cli>Add additional classes to the main body tag to easily target device and operating system i.e. iOS, Android, Chrome, etc…\u003C\u002Fli>\n\u003Cli>Sitemap generator to display a list of pages (or any post type) on the site as well as offering the ability to exclude pages\u003C\u002Fli>\n\u003Cli>WooCommerce settings to disable categories list on single product page, remove reviews tab, remove product count on categories\u003C\u002Fli>\n\u003Cli>When using Visual Composer you can automatically load in any PHP files that make use of vc_map() within your theme\u003C\u002Fli>\n\u003Cli>When using Gravity Forms & Bootstrap all correct classes will be applied to input boxes and buttons. Also, a new field type is added to add columns to forms as well as placing the submit button wherever you like\u003C\u002Fli>\n\u003Cli>Gravity Forms confirmation message appear underneath any fixed header when using AJAX. This hook allows you to scroll to the correct position based on the header\u003C\u002Fli>\n\u003Cli>Can specify a stylesheet that you want to appear last in the enqueue – useful for overwriting parent themes or other plugins\u003C\u002Fli>\n\u003Cli>YouTube embedded videos can have the title, related videos, and controls switched off\u003C\u002Fli>\n\u003Cli>Change the sender name and email address for emails sent\u003C\u002Fli>\n\u003Cli>Short code for displaying the current year – useful for keeping copyright notices up-to-date\u003C\u002Fli>\n\u003Cli>WooCommerce template tweaks for improved usability when using the Jupiter theme\u003C\u002Fli>\n\u003Cli>Set parent hierarchy pages as place holders so they don’t provide links in menus to empty pages\u003C\u002Fli>\n\u003Cli>Simple short code for the current page title – useful to add in to links\u003C\u002Fli>\n\u003Cli>Disable certain notifications for admin\u003C\u002Fli>\n\u003Cli>Added Relevanssi support for XforWooCommerce filter plugin when AJAX is in use\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Coming soon\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Drag & drop page re-ordering\u003C\u002Fli>\n\u003Cli>Improve noindexing on WooCommerce hidden products as well as ensuring the don’t appear in sitemaps both HTML & XML\u003C\u002Fli>\n\u003Cli>Auto hide a page from any menu when its status is no longer published\u003C\u002Fli>\n\u003Cli>Additional default settings for Visual Composer to make it easier to extend and remove built in elements & templates\u003C\u002Fli>\n\u003Cli>More to come!\u003C\u002Fli>\n\u003C\u002Ful>\n","Too many plugins installed to do basic things? Bring some common functions ones into one plugin to make life that little bit easier for developers.",6080,"2026-02-17T02:06:00.000Z","6.7.5","3.0.1","7.1",[137,138,139,24],"administration","production","setup","https:\u002F\u002Fwww.apexdigital.co.nz\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fapex-digital-toolbox.1.5.0.zip",{"attackSurface":143,"codeSignals":184,"taintFlows":195,"riskAssessment":196,"analyzedAt":199},{"hooks":144,"ajaxHandlers":180,"restRoutes":181,"shortcodes":182,"cronEvents":183,"entryPointCount":28,"unprotectedCount":28},[145,151,156,161,165,168,172,176],{"type":146,"name":147,"callback":148,"file":149,"line":150},"action","admin_init","do_init","force-admin-color-scheme.php",77,{"type":152,"name":153,"callback":154,"file":149,"line":155},"filter","get_user_option_admin_color","force_color_scheme",112,{"type":146,"name":157,"callback":158,"priority":159,"file":149,"line":160},"admin_color_scheme_picker","add_checkbox",20,115,{"type":146,"name":162,"callback":163,"file":149,"line":164},"personal_options_update","save_setting",118,{"type":146,"name":157,"callback":166,"priority":72,"file":149,"line":167},"hide_admin_color_scheme_picker",121,{"type":146,"name":169,"callback":170,"file":149,"line":171},"load-profile.php","register_css",124,{"type":146,"name":173,"callback":174,"file":149,"line":175},"admin_head","output_css",488,{"type":146,"name":177,"callback":178,"file":149,"line":179},"plugins_loaded","init",520,[],[],[],[],{"dangerousFunctions":185,"sqlUsage":186,"outputEscaping":188,"fileOperations":28,"externalRequests":28,"nonceChecks":28,"capabilityChecks":193,"bundledLibraries":194},[],{"prepared":28,"raw":28,"locations":187},[],{"escaped":159,"rawEcho":60,"locations":189},[190],{"file":149,"line":191,"context":192},514,"raw output",4,[],[],{"summary":197,"deductions":198},"The 'force-admin-color-scheme' v2.1 plugin exhibits a very strong security posture based on the provided static analysis results. The complete absence of any entry points (AJAX handlers, REST API routes, shortcodes, cron events) significantly limits the attack surface.  Furthermore, the code demonstrates good practices by not utilizing dangerous functions, performing all SQL queries using prepared statements, and having a very high percentage of properly escaped output. The presence of capability checks, though only four, is also a positive sign. The lack of any known vulnerabilities in its history further reinforces its robust security.",[],"2026-03-16T19:31:46.933Z",{"wat":201,"direct":208},{"assetPaths":202,"generatorPatterns":204,"scriptPaths":205,"versionParams":206},[203],"\u002Fwp-content\u002Fplugins\u002Fforce-admin-color-scheme\u002Fcss\u002Fforce-admin-color-scheme.css",[],[],[207],"force-admin-color-scheme\u002Fcss\u002Fforce-admin-color-scheme.css?ver=",{"cssClasses":209,"htmlComments":210,"htmlAttributes":227,"restEndpoints":228,"jsGlobals":229,"shortcodeOutput":230},[],[211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],"Copyright (c) 2014-2025 by Scott Reilly (aka coffee2code)","This program is free software; you can redistribute it and\u002For","modify it under the terms of the GNU General Public License","as published by the Free Software Foundation; either version 2","of the License, or (at your option) any later version.","This program is distributed in the hope that it will be useful,","but WITHOUT ANY WARRANTY; without even the implied warranty of","MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the","GNU General Public License for more details.","You should have received a copy of the GNU General Public License","along with this program; if not, write to the Free Software","Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.","Note: not bothering with preventing users from being able to save a value for admin_color","since it's not really a big deal if they do.","If an empty string is returned, then it's as if the filter had","not been hooked.",[],[],[],[],{"error":232,"url":233,"statusCode":234,"statusMessage":235,"message":235},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fforce-admin-color-scheme\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":237,"versions":238},9,[239,245,252,259,266,272,279,286,293],{"version":6,"download_url":26,"svn_tag_url":240,"released_at":29,"has_diff":241,"diff_files_changed":242,"diff_lines":29,"trac_diff_url":243,"vulnerabilities":244,"is_current":232},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F2.1\u002F",false,[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0.3&new_path=%2Fforce-admin-color-scheme%2Ftags%2F2.1",[],{"version":246,"download_url":247,"svn_tag_url":248,"released_at":29,"has_diff":241,"diff_files_changed":249,"diff_lines":29,"trac_diff_url":250,"vulnerabilities":251,"is_current":241},"2.0.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.2.0.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F2.0.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0.2&new_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0.3",[],{"version":253,"download_url":254,"svn_tag_url":255,"released_at":29,"has_diff":241,"diff_files_changed":256,"diff_lines":29,"trac_diff_url":257,"vulnerabilities":258,"is_current":241},"2.0.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.2.0.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F2.0.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0.1&new_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0.2",[],{"version":260,"download_url":261,"svn_tag_url":262,"released_at":29,"has_diff":241,"diff_files_changed":263,"diff_lines":29,"trac_diff_url":264,"vulnerabilities":265,"is_current":241},"2.0.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.2.0.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F2.0.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0&new_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0.1",[],{"version":86,"download_url":267,"svn_tag_url":268,"released_at":29,"has_diff":241,"diff_files_changed":269,"diff_lines":29,"trac_diff_url":270,"vulnerabilities":271,"is_current":241},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.2.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F2.0\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F1.2.1&new_path=%2Fforce-admin-color-scheme%2Ftags%2F2.0",[],{"version":273,"download_url":274,"svn_tag_url":275,"released_at":29,"has_diff":241,"diff_files_changed":276,"diff_lines":29,"trac_diff_url":277,"vulnerabilities":278,"is_current":241},"1.2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.1.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F1.2.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F1.2&new_path=%2Fforce-admin-color-scheme%2Ftags%2F1.2.1",[],{"version":280,"download_url":281,"svn_tag_url":282,"released_at":29,"has_diff":241,"diff_files_changed":283,"diff_lines":29,"trac_diff_url":284,"vulnerabilities":285,"is_current":241},"1.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.1.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F1.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F1.1.1&new_path=%2Fforce-admin-color-scheme%2Ftags%2F1.2",[],{"version":287,"download_url":288,"svn_tag_url":289,"released_at":29,"has_diff":241,"diff_files_changed":290,"diff_lines":29,"trac_diff_url":291,"vulnerabilities":292,"is_current":241},"1.1.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.1.1.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F1.1.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fforce-admin-color-scheme%2Ftags%2F1.1&new_path=%2Fforce-admin-color-scheme%2Ftags%2F1.1.1",[],{"version":294,"download_url":295,"svn_tag_url":296,"released_at":29,"has_diff":241,"diff_files_changed":297,"diff_lines":29,"trac_diff_url":29,"vulnerabilities":298,"is_current":241},"1.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fforce-admin-color-scheme.1.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fforce-admin-color-scheme\u002Ftags\u002F1.1\u002F",[],[]]