PluginProbe
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance / 1.1.8
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance v1.1.8
trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4
flying-scripts / flying-scripts.php

flying-scripts.php in Flying Scripts: Delay JavaScript to Improve Site Speed & Performance 1.1.8, at flying-scripts.php

26 lines 739 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Flying Scripts by WP Speed Matters
4 * Plugin URI: https://wordpress.org/plugins/flying-scripts/
5 * Description: Download and execute JavaScript on user interaction.
6 * Author: Gijo Varghese
7 * Author URI: https://wpspeedmatters.com/
8 * Version: 1.1.8
9 * Text Domain: flying-scripts
10 */
11
12 // If this file is called directly, abort.
13 if (! defined('WPINC')) {
14 die;
15 }
16
17 // Define constant with current version
18 define('FLYING_SCRIPTS_VERSION', '1.1.8');
19
20 include('init-config.php');
21 include('settings/index.php');
22 include('inject-js.php');
23 include('html-rewrite.php');
24 include('shortcuts.php');
25 add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'flying_scripts_add_shortcuts');
26