LordAshes / TaleSpire-BeyondLinkViaChrome

Unofficial TaleSpire plugin to extract D&D Beyond data, using Chrome Extension, and make it available in TS.
MIT License
0 stars 0 forks source link

Request for similar Plugin #6

Open salcor3052 opened 2 years ago

salcor3052 commented 2 years ago

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

salcor3052@yahoo.com

LordAshes commented 2 years ago

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

salcor3052 commented 2 years ago

Thanks for reaching out.  Unfortunately I have little to no.programing capability.  I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

LordAshes commented 2 years ago

Okay. So next couple questions:

  1. Can all of the character information be viewed at the same time without needing to switch pages or tabs? The plugin will only be successful if it can get at the data without having navigate pages or press tabs.
  2. Are you familiar with the View Source and Inspect features of a browser? In order for me to make a configuration for Savaged.US it would be much faster if someone located all of the keywords that I need to search for in order to get the data. This generally requires loading a page and using the inspect browser tool to look at the HTML. You don't need to understand the HTML, you just need to search through it to find the data of interest. For example, in code such as this:
15 of 35

I need to identify some unique keywords to find HP. So something like: Find "Id=HP" then "Current" and get the value between ">" and "<". If someone would take a first stab at identify the data that they want to extract and finding the key words then the config would be fairly fast for me to make. If I would need to go through it myself and find keywords then it would take much longer.

So it all depends on how much you think you can help (or get someone else to help).

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Feb 28, 2022 at 9:08 PM salcor3052 @.***> wrote:

Thanks for reaching out. Unfortunately I have little to no.programing capability. I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

< http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com < http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1054908230, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6ACS43TVR3AD6HEDDTU5V3ZZANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

salcor3052 commented 2 years ago

Roger.  I will.put you in touch with the sit manager.  The site has a page that players/GMs can do dice rolls and initiative through. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 21:35, Lord @.***> wrote:

Okay. So next couple questions:

  1. Can all of the character information be viewed at the same time without needing to switch pages or tabs? The plugin will only be successful if it can get at the data without having navigate pages or press tabs.
  2. Are you familiar with the View Source and Inspect features of a browser? In order for me to make a configuration for Savaged.US it would be much faster if someone located all of the keywords that I need to search for in order to get the data. This generally requires loading a page and using the inspect browser tool to look at the HTML. You don't need to understand the HTML, you just need to search through it to find the data of interest. For example, in code such as this:
15 of 35

I need to identify some unique keywords to find HP. So something like: Find "Id=HP" then "Current" and get the value between ">" and "<". If someone would take a first stab at identify the data that they want to extract and finding the key words then the config would be fairly fast for me to make. If I would need to go through it myself and find keywords then it would take much longer.

So it all depends on how much you think you can help (or get someone else to help).

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Feb 28, 2022 at 9:08 PM salcor3052 @.***> wrote:

Thanks for reaching out. Unfortunately I have little to no.programing capability. I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

< http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com < http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1054908230, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6ACS43TVR3AD6HEDDTU5V3ZZANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

salcor3052 commented 2 years ago

Talking with the site developer but i will dice in to see what I can find.  Do you have a "donate" function for the support? Salcor

Sent from Yahoo Mail on Android

On Tue, Mar 1, 2022 at 7:32, Salcor @.***> wrote: Roger.  I will.put you in touch with the sit manager.  The site has a page that players/GMs can do dice rolls and initiative through. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 21:35, Lord @.***> wrote:

Okay. So next couple questions:

  1. Can all of the character information be viewed at the same time without needing to switch pages or tabs? The plugin will only be successful if it can get at the data without having navigate pages or press tabs.
  2. Are you familiar with the View Source and Inspect features of a browser? In order for me to make a configuration for Savaged.US it would be much faster if someone located all of the keywords that I need to search for in order to get the data. This generally requires loading a page and using the inspect browser tool to look at the HTML. You don't need to understand the HTML, you just need to search through it to find the data of interest. For example, in code such as this:
15 of 35

I need to identify some unique keywords to find HP. So something like: Find "Id=HP" then "Current" and get the value between ">" and "<". If someone would take a first stab at identify the data that they want to extract and finding the key words then the config would be fairly fast for me to make. If I would need to go through it myself and find keywords then it would take much longer.

So it all depends on how much you think you can help (or get someone else to help).

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Feb 28, 2022 at 9:08 PM salcor3052 @.***> wrote:

Thanks for reaching out. Unfortunately I have little to no.programing capability. I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

< http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com < http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe < https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1054908230, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6ACS43TVR3AD6HEDDTU5V3ZZANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

LordAshes commented 2 years ago

Yes. Most of my plugins and videos have a donate page. You can get to it by going to: lordashes.ca

It is a simple donation page powered by PayPal so while the page itself is not secure, the payment portion is.

Best Regards,

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Tue, Mar 1, 2022 at 8:38 AM salcor3052 @.***> wrote:

Talking with the site developer but i will dice in to see what I can find. Do you have a "donate" function for the support? Salcor

Sent from Yahoo Mail on Android

On Tue, Mar 1, 2022 at 7:32, Salcor @.***> wrote: Roger. I will.put you in touch with the sit manager. The site has a page that players/GMs can do dice rolls and initiative through. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 21:35, Lord @.***> wrote:

Okay. So next couple questions:

  1. Can all of the character information be viewed at the same time without needing to switch pages or tabs? The plugin will only be successful if it can get at the data without having navigate pages or press tabs.
  2. Are you familiar with the View Source and Inspect features of a browser? In order for me to make a configuration for Savaged.US it would be much faster if someone located all of the keywords that I need to search for in order to get the data. This generally requires loading a page and using the inspect browser tool to look at the HTML. You don't need to understand the HTML, you just need to search through it to find the data of interest. For example, in code such as this:
15 of 35

I need to identify some unique keywords to find HP. So something like: Find "Id=HP" then "Current" and get the value between ">" and "<". If someone would take a first stab at identify the data that they want to extract and finding the key words then the config would be fairly fast for me to make. If I would need to go through it myself and find keywords then it would take much longer.

So it all depends on how much you think you can help (or get someone else to help).

Lord Ashes

< http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com < http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Feb 28, 2022 at 9:08 PM salcor3052 @.***> wrote:

Thanks for reaching out. Unfortunately I have little to no.programing capability. I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

<

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com <

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe <

https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS <

https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android <

https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub

.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub < https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1054908230 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AGQ5Y6ACS43TVR3AD6HEDDTU5V3ZZANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1055452152, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6DFOQFLTCBG5NM73JLU5YMXFANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

salcor3052 commented 2 years ago

Cool, I spoke to the website owner and he is in the process of completely rewriting the page in question so I will probably hold off until that is done.  Once it is complete I will reach back out. Salcor

Sent from Yahoo Mail on Android

On Tue, Mar 1, 2022 at 7:50, Lord @.***> wrote:

Yes. Most of my plugins and videos have a donate page. You can get to it by going to: lordashes.ca

It is a simple donation page powered by PayPal so while the page itself is not secure, the payment portion is.

Best Regards,

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Tue, Mar 1, 2022 at 8:38 AM salcor3052 @.***> wrote:

Talking with the site developer but i will dice in to see what I can find. Do you have a "donate" function for the support? Salcor

Sent from Yahoo Mail on Android

On Tue, Mar 1, 2022 at 7:32, Salcor @.***> wrote: Roger. I will.put you in touch with the sit manager. The site has a page that players/GMs can do dice rolls and initiative through. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 21:35, Lord @.***> wrote:

Okay. So next couple questions:

  1. Can all of the character information be viewed at the same time without needing to switch pages or tabs? The plugin will only be successful if it can get at the data without having navigate pages or press tabs.
  2. Are you familiar with the View Source and Inspect features of a browser? In order for me to make a configuration for Savaged.US it would be much faster if someone located all of the keywords that I need to search for in order to get the data. This generally requires loading a page and using the inspect browser tool to look at the HTML. You don't need to understand the HTML, you just need to search through it to find the data of interest. For example, in code such as this:
15 of 35

I need to identify some unique keywords to find HP. So something like: Find "Id=HP" then "Current" and get the value between ">" and "<". If someone would take a first stab at identify the data that they want to extract and finding the key words then the config would be fairly fast for me to make. If I would need to go through it myself and find keywords then it would take much longer.

So it all depends on how much you think you can help (or get someone else to help).

Lord Ashes

< http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com < http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Feb 28, 2022 at 9:08 PM salcor3052 @.***> wrote:

Thanks for reaching out. Unfortunately I have little to no.programing capability. I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

<

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com <

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6, or unsubscribe <

https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS <

https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android <

https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub

.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub < https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1054908230 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AGQ5Y6ACS43TVR3AD6HEDDTU5V3ZZANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1055452152, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6DFOQFLTCBG5NM73JLU5YMXFANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

LordAshes commented 2 years ago

Ok, thanks for the update. You may want to inform the website owner that the integration with Talespire can be set up as long as the website provides some page where all of the character stats can be accessed at once without needing to navigate to sub pages. So if the website will use a fancy interface consisting of multiple pages, it would be good to offer a simplified view option where the same information is available at once.

Best Regards,

Lord Ashes

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Tue, Mar 1, 2022 at 9:54 AM salcor3052 @.***> wrote:

Cool, I spoke to the website owner and he is in the process of completely rewriting the page in question so I will probably hold off until that is done. Once it is complete I will reach back out. Salcor

Sent from Yahoo Mail on Android

On Tue, Mar 1, 2022 at 7:50, Lord @.***> wrote:

Yes. Most of my plugins and videos have a donate page. You can get to it by going to: lordashes.ca

It is a simple donation page powered by PayPal so while the page itself is not secure, the payment portion is.

Best Regards,

Lord Ashes

< http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com < http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Tue, Mar 1, 2022 at 8:38 AM salcor3052 @.***> wrote:

Talking with the site developer but i will dice in to see what I can find. Do you have a "donate" function for the support? Salcor

Sent from Yahoo Mail on Android

On Tue, Mar 1, 2022 at 7:32, Salcor @.***> wrote: Roger. I will.put you in touch with the sit manager. The site has a page that players/GMs can do dice rolls and initiative through. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 21:35, Lord @.***> wrote:

Okay. So next couple questions:

  1. Can all of the character information be viewed at the same time without needing to switch pages or tabs? The plugin will only be successful if it can get at the data without having navigate pages or press tabs.
  2. Are you familiar with the View Source and Inspect features of a browser? In order for me to make a configuration for Savaged.US it would be much faster if someone located all of the keywords that I need to search for in order to get the data. This generally requires loading a page and using the inspect browser tool to look at the HTML. You don't need to understand the HTML, you just need to search through it to find the data of interest. For example, in code such as this:
15 of 35

I need to identify some unique keywords to find HP. So something like: Find "Id=HP" then "Current" and get the value between ">" and "<". If someone would take a first stab at identify the data that they want to extract and finding the key words then the config would be fairly fast for me to make. If I would need to go through it myself and find keywords then it would take much longer.

So it all depends on how much you think you can help (or get someone else to help).

Lord Ashes

<

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com <

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Feb 28, 2022 at 9:08 PM salcor3052 @.***> wrote:

Thanks for reaching out. Unfortunately I have little to no.programing capability. I also failed out of college twice trying to learn computer programming. Salcor

Sent from Yahoo Mail on Android

On Mon, Feb 28, 2022 at 9:48, Lord @.***> wrote:

Both the obsolete Beyond Link and the newer Beyond Link Via Chrome are designed to be used for different sources. The default is configured for D&D Beyond but by changing the parsing config (for Beyond Link) or Chrome Extension js file (for Beyond Link via Chrome) you can make it use a different source...as long as your source has some kind of a common page with all the info on it (i.e. does not require navigating a bunch of different pages to get the data).

I recommend using the Beyond Link via Chrome because it is more capable of extracting data and the extraction script is much easier to write. How is your programming background? Have you written some javascripts before? If so, it should be fairly easy to modify.

Lord Ashes

<

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

Virus-free. www.avg.com <

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Feb 23, 2022 at 11:39 PM salcor3052 @.***> wrote:

Hello, sorry could not find another way to contact you. I was wondering if you would consider a similar Plugin set up for a website called Savaged.US? it is a character generator and tool website for the Savage Worlds ruleset. What you did with the D&D Beyond is amazing. I would love to see what it would take for you to program a similar mod.

@.***

— Reply to this email directly, view it on GitHub <https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6 , or unsubscribe <

https://github.com/notifications/unsubscribe-auth/AGQ5Y6FY6S22ASZ27JVL22LU4WZBNANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS <

https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android <

https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub

.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub <

https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1054908230

, or unsubscribe <

https://github.com/notifications/unsubscribe-auth/AGQ5Y6ACS43TVR3AD6HEDDTU5V3ZZANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS <

https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android <

https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub

.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub < https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1055452152 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AGQ5Y6DFOQFLTCBG5NM73JLU5YMXFANCNFSM5PGJLQDQ

. Triage notifications on the go with GitHub Mobile for iOS < https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675

or Android < https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/LordAshes/TaleSpire-BeyondLinkViaChrome/issues/6#issuecomment-1055529071, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGQ5Y6FBF5NULCEF4IKN4HDU5YVUDANCNFSM5PGJLQDQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>