=== InfoBilisim Query Strings Remover ===
Contributors: vedataydar
Donate link: https://buymeacoffee.com/vedataydar
Tags: performance, speed, cache, optimization, seo
Requires at least: 5.0
Tested up to: 7.0
Requires PHP: 7.4
Stable tag: 1.3.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

A lightweight plugin to remove query strings from static resources like CSS and JS files to improve speed and caching scores.

== Description ==

This plugin automatically cleans up version parameters (like `?ver=`, `?v=`) from your static resources (CSS and JavaScript files). This helps resolve the "Remove query strings from static resources" warning found in GTMetrix, Pingdom, and Google PageSpeed Insights, significantly improving your website's caching capabilities.

**Key Features:**

* **High Performance:** Uses static caching and O(1) complexity lookup algorithm.
* **Smart Filtering:** Automatically excludes critical resources like CDNs and Google Fonts to prevent breakage.
* **Developer Friendly:** Includes hooks like `rqs_excluded_handles` for custom exclusions.
* **Safe:** No database changes, works entirely on the frontend.

== Installation ==

1.  Upload the plugin folder to the `/wp-content/plugins/` directory.
2.  Activate the plugin through the 'Plugins' menu in WordPress.
3.  No configuration needed! It works immediately upon activation.

== Frequently Asked Questions ==

= Which files are affected? =
It removes query strings from all CSS (.css) and JavaScript (.js) files on the frontend.

= Can I exclude specific scripts? =
Yes. Developers can use the `rqs_excluded_handles` filter to exclude specific script handles.

== Screenshots ==

1. Before activation: Source code with version parameters.
2. After activation: Clean source code.

== Changelog ==

= 1.3.3 =
* Tested and confirmed compatible with WordPress 7.0.
* Fixed text domain to match the plugin slug (rqs-info-bilisim) so translations load correctly.

= 1.3.2 =
* Initial release.
* Added support for PHP 8.x.
* Added memory leak protection.