Changeset 3020148
- Timestamp:
- 01/11/2024 06:20:16 AM (2 years ago)
- Location:
- sitespeaker-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (4 diffs)
-
sitespeaker.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sitespeaker-widget/trunk/readme.txt
r2976474 r3020148 1 === ReadAloudWidget ===1 === SiteNarrator Widget === 2 2 Contributors: ken107 3 3 Donate link: https://www.lsdsoftware.com/ 4 Tags: tts, text-to-speech, widget, read-aloud, audio, voice, text-to-audio, speech, speechify4 Tags: tts, text-to-speech, widget, read-aloud, site-narrator, audio, voice, text-to-audio, speech, speechify 5 5 Requires at least: 3.0 6 6 Tested up to: 6.3 … … 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Let your users listen to your content with the ReadAloudtext-to-speech widget12 Let your users listen to your content with the SiteNarrator text-to-speech widget 13 13 14 14 == Description == 15 15 16 The ReadAloudtext-to-speech widget is embedded into your posts and give users an alternate way to consume your content as audio.16 The SiteNarrator text-to-speech widget is embedded into your posts and give users an alternate way to consume your content as audio. 17 17 18 18 == Installation == 19 19 20 1. [Sign up](https://dashboard. readaloudwidget.com/?p=SignUp) for an account.20 1. [Sign up](https://dashboard.sitenarrator.com/?p=SignUp) for an account. 21 21 2. After signup, login to the customer dashboard and add your website domain(s). 22 22 3. Click on 'Get Code' in the dashboard and note down your API key. 23 4. Install the ReadAloudWidget plugin through the WordPress plugins store.24 5. Activate the plugin through the ' ReadAloudWidget Settings' menu in WordPress.23 4. Install the SiteNarrator Widget plugin through the WordPress plugins store. 24 5. Activate the plugin through the 'SiteNarrator Widget Settings' menu in WordPress. 25 25 26 26 == Frequently Asked Questions == … … 29 29 Text to Speech technology reads aloud digital text—the words on computers, smartphones and tablets. TTS helps people with learning disabilities improve their reading comprehension. 30 30 31 ### How does the ReadAloud Widget work?32 The ReadAloudwidget appears at the top your posts as a button labeled "Listen to this article". When clicked, the button is replaced by an audio player that plays back the synthesized speech of your article content.31 ### How does the SiteNarrator widget work? 32 The SiteNarrator widget appears at the top your posts as a button labeled "Listen to this article". When clicked, the button is replaced by an audio player that plays back the synthesized speech of your article content. 33 33 34 34 ### How much does it cost? 35 View [pricing](https://dashboard. readaloudwidget.com/pricing.html).35 View [pricing](https://dashboard.sitenarrator.com/pricing.html). 36 36 37 ### Is ReadAloud Widgetbilled on the domain or account level?37 ### Is SiteNarrator billed on the domain or account level? 38 38 An account can be associated with many domains. Billing is based on the cumulative cost incurred on all domains associated with the account. 39 39 40 ### Where can ReadAloud Widgetbe purchased?41 ReadAloud Widgetcan be purchased globally in any country using a credit card.40 ### Where can SiteNarrator be purchased? 41 SiteNarrator can be purchased globally in any country using a credit card. 42 42 43 43 ### How do my website users use the widget? Do my users have to download anything? 44 44 Users do not need to download or install anything to use the widget. When they click on the "Listen to this article" button on your website, the widget will be embedded directly into the page to enable playback of synthesized speech. 45 45 46 ### Which devices and browsers support the ReadAloud Widget?46 ### Which devices and browsers support the SiteNarrator widget? 47 47 The widget works on all device types, including desktop, mobile, and tablet devices. It supports all modern browsers. 48 48 49 ### What languages does the widget support?49 ### What languages does the SiteNarrator widget support? 50 50 The widget support 25+ languages including English, Spanish, French, German, Hindi, Chinese Mandarin, Italian, Portuguese, Russian, Japanese, and Arabic. 51 51 … … 59 59 No, we do not sell customer or user data to third parties. 60 60 61 ### Does the ReadAloudwidget support DOCs and PDFs?61 ### Does the SiteNarrator widget support DOCs and PDFs? 62 62 The widget does not support reading DOCs, PDFs, or any type of documents that are embedded into the web page. 63 63 -
sitespeaker-widget/trunk/sitespeaker.php
r2976473 r3020148 1 1 <?php 2 2 /** 3 * Plugin Name: ReadAloudWidget3 * Plugin Name: SiteNarrator Widget 4 4 * Plugin URI: http://readaloudwidget.com 5 * Description: Speechify your website with the ReadAloudText-to-Speech widget6 * Version: 1. 65 * Description: Speechify your website with the SiteNarrator Text-to-Speech widget 6 * Version: 1.7 7 7 * Author: LSD Software 8 8 * Author URI: http://lsdsoftware.com … … 17 17 18 18 function sitespeaker_menu() { 19 add_options_page(' ReadAloud Widget', 'ReadAloudWidget', 'manage_options', 'sitespeaker_settings_page', 'sitespeaker_settings');19 add_options_page('SiteNarrator Widget', 'SiteNarrator Widget', 'manage_options', 'sitespeaker_settings_page', 'sitespeaker_settings'); 20 20 } 21 21 … … 23 23 ?> 24 24 <div class="wrap"> 25 <h2> ReadAloudWidget</h2>25 <h2>SiteNarrator Widget</h2> 26 26 <form action="options.php" method="post"> 27 27 <?php settings_fields('sitespeaker_settings'); ?> … … 43 43 44 44 function sitespeaker_main_settings_section_text() { 45 echo "<p style='max-width: 60em;'>You can find your API key in your User Profile in the ReadAloud Widget customer <a target='_blank' href='https://dashboard.readaloudwidget.com/?p=Login'>dashboard</a>. " .46 "If you don't have an account, you can sign up for one <a target='_blank' href='https://dashboard. readaloudwidget.com/?p=SignUp'>here</a>. " .45 echo "<p style='max-width: 60em;'>You can find your API key in your User Profile in the SiteNarrator customer <a target='_blank' href='https://dashboard.sitenarrator.com/?p=Login'>dashboard</a>. " . 46 "If you don't have an account, you can sign up for one <a target='_blank' href='https://dashboard.sitenarrator.com/?p=SignUp'>here</a>. " . 47 47 "<u>Note</u>: your site's domain must be whitelisted in the dashboard for the API key to work.</p>"; 48 48
Note: See TracChangeset
for help on using the changeset viewer.