Plugin Directory

Changeset 2346320


Ignore:
Timestamp:
07/25/2020 12:48:40 AM (5 years ago)
Author:
MissionMike
Message:

Added LinkedIn Post Inspector support, Renamed plugin to 'Scrape and Debug'

Location:
dts-debugger
Files:
18 added
9 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified dts-debugger/trunk/css/styles.css

    r2341111 r2346320  
    1414    border-bottom: 1px solid #eee;
    1515    margin: 0 1%;
    16     padding: 5px;
     16    padding: 0;
    1717    font-weight: normal;
    1818    background-color: #fefefe;
     
    2626    display: inline-block;
    2727    margin: 1%;
    28     padding: 10px;
    29     background-color: #eee;
     28    padding: 0;
     29    background-color: transparent;
    3030    text-align: center;
    3131}
     
    5454
    5555.debug-btn img:hover {
    56     -webkit-transform: scale(1.2);
    57     transform: scale(1.2);
     56    -webkit-transform: scale(1.05);
     57    transform: scale(1.05);
    5858}
    5959
  • TabularUnified dts-debugger/trunk/dts-debugger.php

    r2341111 r2346320  
    11<?php
    22/*
    3 Plugin Name: DT's Debugger
    4 Plugin URI: https://dtweb.design/debugger/
    5 Description: Simplify page debugging via Facebook Developer Tools, Google's Structured Data Testing Tool, PageSpeed Insights, W3C Validation, Google AMP Test. Found in page/post sidebar metabox and edit posts/pages/CPT lists.
    6 Version: 0.5.0
    7 Author: Michael R. Dinerstein
    8 Author URI: https://www.linkedin.com/in/michaeldinerstein/
     3Plugin Name: Scrape and Debug
     4Plugin URI: https://www.missionmike.dev/scrape-and-debug-wordpress-plugin/
     5Description: Simplify page debugging via Facebook Sharing Debugger, LinkedIn Post Inspector, Google's Structured Data Testing Tool and Rich Results Test, PageSpeed Insights, W3C Validation, and Google AMP Test.
     6Version: 0.5.1
     7Author: Michael R. Dinerstein (Mission Mike)
     8Author URI: https://www.missionmike.dev/
    99License: GPL2
    1010*/
     
    168168    function dts_dbggr_settings_post_types_text()
    169169    {
    170         echo '<p>Select which post types <strong>display</strong> the <em>DT\'s Debugger</em> panel and quicklinks:</p>';
     170        echo '<p>Select which post types <strong>display</strong> the <em>Scrape and Debug</em> panel and icon links:</p>';
    171171    }
    172172
     
    250250
    251251/**
    252  * Add DT's Debugger to Settings Menu
     252 * Add Scrape and Debug to Settings Menu
    253253 */
    254254function dts_dbggr_init_menu()
     
    259259        include(plugin_dir_path(__FILE__) . 'dts-settings.php');
    260260    }
    261     add_options_page(__('DT\'s Debugger', 'dts-debugger'), __('DT\'s Debugger', 'dts-debugger'), 'manage_options', 'dts-debugger', 'dts_dbggr_options_page');
     261    add_options_page(__('Scrape and Debug', 'dts-debugger'), __('Scrape and Debug', 'dts-debugger'), 'manage_options', 'dts-debugger', 'dts_dbggr_options_page');
    262262}
    263263add_action('admin_menu', 'dts_dbggr_init_menu');
     
    272272
    273273    $new_columns = array(
    274         'dts_quicklinks' => __('Debug Quicklinks', 'dts-debugger')
     274        'dts_quicklinks' => __('Scrape and Debug', 'dts-debugger')
    275275    );
    276276
     
    364364    if (!empty($options[$setting_option]) && $options[$setting_option] === '1') :
    365365
    366         add_meta_box('sm-debug-post', __('DT\'s Debugger', 'dts-debugger'),  'dts_dbggr_social_media_metabox', null, 'side', 'core');
     366        add_meta_box('sm-debug-post', __('Scrape and Debug', 'dts-debugger'),  'dts_dbggr_social_media_metabox', null, 'side', 'core');
    367367
    368368    endif;
     
    445445            'name'  => 'facebook',
    446446            'url'   => 'https://developers.facebook.com/tools/debug/sharing/?q=' . $permalink,
    447             'title' => 'Open Graph Object Debugger',
    448             'image' => 'facebook.png'
    449         ),
     447            'title' => 'Facebook Sharing Debugger',
     448            'image' => 'facebook.png',
     449        ),
     450        array(
     451            'name'  => 'linkedin',
     452            'url'   => 'https://www.linkedin.com/post-inspector/inspect/' . $permalink,
     453            'title' => 'LinkedIn Post Inspector',
     454            'image' => 'linkedin.png',
     455        ),
     456
     457        'Performance',
     458
     459        array(
     460            'name'  => 'pagespeed',
     461            'url'   => 'https://developers.google.com/speed/pagespeed/insights/?url=' . $permalink,
     462            'title' => 'Google PageSpeed Insights',
     463            'image' => 'pagespeed.png',
     464        ),
     465        array(
     466            'name'  => 'w3c',
     467            'url'   => 'https://validator.w3.org/nu/?doc=' . $permalink,
     468            'title' => 'Nu Html Checker (W3C)',
     469            'image' => 'w3c.png',
     470        ),
     471
     472        'SEO',
     473
    450474        array(
    451475            'name'  => 'google-rich',
    452476            'url'   => 'https://search.google.com/test/rich-results?url=' . $permalink,
    453477            'title' => 'Rich Results Test',
    454             'image' => 'google.png'
     478            'image' => 'google.png',
    455479        ),
    456480        array(
     
    458482            'url'   => 'https://search.google.com/structured-data/testing-tool/u/0/?hl=en#url=' . $permalink,
    459483            'title' => 'Structured Data Testing Tool (Deprecated)',
    460             'image' => 'google-deprecated.png'
    461         ),
    462 
    463         'Performance',
    464 
    465         array(
    466             'name'  => 'pagespeed',
    467             'url'   => 'https://developers.google.com/speed/pagespeed/insights/?url=' . $permalink,
    468             'title' => 'PageSpeed Insights',
    469             'image' => 'pagespeed.png'
    470         ),
    471         array(
    472             'name'  => 'w3c',
    473             'url'   => 'https://validator.w3.org/nu/?doc=' . $permalink,
    474             'title' => 'Nu Html Checker (W3C)',
    475             'image' => 'w3c.png'
    476         ),
    477 
    478         'Specialized',
    479 
     484            'image' => 'google-deprecated.png',
     485        ),
    480486        array(
    481487            'name'  => 'amp',
  • TabularUnified dts-debugger/trunk/dts-settings.php

    r2341111 r2346320  
    44
    55<div class="wrap">
    6     <h2>DT's Debugger Settings</h2>
     6    <h2>Scrape and Debug Settings</h2>
    77
    88    <form method="post" action="options.php">
  • TabularUnified dts-debugger/trunk/readme.txt

    r2341111 r2346320  
    1 === DT's Debugger ===
     1=== Scrape and Debug ===
    22Contributors: MissionMike
    33Tags: debug, facebook, google, open graph, w3c, validator, structured data, html, pagespeed, amp
    4 Donate link: https://dtweb.design/debugger/
     4Donate link: https://www.missionmike.dev/scrape-and-debug-wordpress-plugin/
    55Requires at least: 2.8
    66Tested up to: 5.4
     
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 Simplify page debugging via Facebook Developer Tools, Google's Structured Data Testing Tool, PageSpeed Insights, W3C Validation, and now Google AMP Test.
     10Simplify page debugging via Facebook Sharing Debugger, LinkedIn Post Inspector, Google's Structured Data Testing Tool and Rich Results Test, PageSpeed Insights, W3C Validation, and Google AMP Test.
    1111
    1212== Description ==
    13 #About DT's Debugger
     13#About Scrape and Debug
    1414
    15 This plugin was created to speed up SEO and Social Media testing via public tools provided by Google, W3C, and Facebook. Found in page/post sidebar metabox. Some services (like Facebook's Opengraph Debugger) require an account with the respective service to use (i.e., a Facebook account).
     15This plugin was created to speed up SEO and Social Media testing via public tools provided by Google, W3C, Facebook, and LinkedIn. Found in page/post sidebar metabox. Some services (like Facebook's Sharing Debugger) require an account with the respective service to use (i.e., a free Facebook account).
    1616
    17 DT's Debugger does **not** allow you to change any meta titles, keywords, open graph data, etc. It is only providing quick-links to debug the existing data and values set for those fields by other 3rd-party SEO plugins, or to test your general page speed and HTML validity.
     17Scrape and Debug does **not** allow you to change any meta titles, keywords, open graph data, etc. It is only providing quick-links to debug the existing data and values set for those fields by other 3rd-party SEO plugins, or to test your general page speed and HTML validity.
    1818
    1919Links to quickly debug and check posts are found in the sidebar when editing posts, as well as in a column (Quicklinks) when listing posts or pages in admin.
     
    2727== Frequently Asked Questions ==
    2828N/A
     29
     30=v0.5.1=
     31
     32* Added support for LinkedIn Post Inspector
    2933
    3034=v0.5.0=
     
    4347=v0.3=
    4448
    45 * Added Google AMP debugger. If page/post has valid <link rel="amphtml" src="..."> tag, Google's AMP Test will request to validate it. Check DT's Debugger settings to show the AMP Test option.
     49* Added Google AMP debugger. If page/post has valid <link rel="amphtml" src="..."> tag, Google's AMP Test will request to validate it. Check Scrape and Debug settings to show the AMP Test option.
    4650
    4751=v0.2.2=
Note: See TracChangeset for help on using the changeset viewer.