WP Manifestindependent plugin directory
manifest / performance / alwayspass-wp-plugin

AlwaysPass

WordPress plugin that injects the AlwaysPass monitoring script into the site head

by AlwaysPass · github.com/diogobrbto/alwayspass-wp-plugin · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/diogobrbto/alwayspass-wp-plugin/archive/refs/heads/main.zip

AlwaysPass — WordPress Plugin

Injects the AlwaysPass Core Web Vitals monitoring script into the <head> of your WordPress site.

Installation

  1. Copy (or symlink) the alwayspass-wp-plugin folder into your WordPress installation:

    wp-content/plugins/alwayspass/
  2. Go to WordPress Admin → Plugins and activate AlwaysPass.

  3. The script is injected automatically on activation. No additional setup required.

Admin Page

Navigate to WordPress Admin → AlwaysPass to:

Action Description
Disable script Stops injecting script.min.js into <head>
Enable script Re-enables the injection
Go to the dashboard Opens app.alwayspass.io in a new tab

Script injected

<script src="https://app.alwayspass.io/script.min.js" defer></script>

Tracking exclusions

To keep internal usage out of your real-user Core Web Vitals data, the script is not loaded in the following cases:

  • On WordPress admin pages (/wp-admin/).
  • For users logged in as an administrator — administrator activity is excluded so it doesn't mix with real visitor data.

Logged-out visitors and non-admin logged-in users (e.g. subscribers, authors, editors) are tracked normally.

File structure

alwayspass-wp-plugin/
├── alwayspass.php          # Main plugin file (hooks, activation, admin menu)
├── admin/
│   └── admin-page.php      # Admin page template
├── assets/
│   └── admin-style.css     # Admin page styles
└── README.md

Requirements

  • WordPress 5.0+
  • PHP 7.4+