Account linking in Google Dialogflow [closed] - dialogflow-es

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I've tried many times to deploy my Google Assistant project. But it's rejected for the following reason:
Your Action's content could not be accessed due to account restrictions or a paywall. If your Actions require account linking, please add instructions on how to trigger your account linking prompt in the "Testing Instructions” field of the developer console before submitting your Action again. In this case, you indicated in the AoG console that your Action has account linking using Google Sign-In but during testing we weren't able to find an account linking prompt. If your Action does not have account linking, then kindly clear the data in the "Account Linking" section of the AoG console.
I have no idea how to fix this. The project doesn't contain account linking, but I don't know how to clear the data as suggested.
I've searched the entire internet, but couldn't find it.

In your actions on google console you can find the accountlinking settings under Develop > Account linking. In these setting there should be a slider which you can turn off to disable account linking for you project.

Related

Account linking in simulator no longer available?

I have a voice skill for Google Assistant which requires account linking. Before, I was able to test this in the simulator by going to the Debug tab and there would be a URL that I can use to do the account linking. Now, that URL is no longer there, and I'm not sure how to do account linking using the simulator anymore. Is this a bug or did Google intentionally remove this information from the Debug tab of the simulator?
Nevermind, I realized that you can just reply "Yes" in the simulator and it opens up the account linking window. Although the link in the Debug tab is still gone, I can still perform account linking. That's good enough.

Chrome has DELETED our addon because of an error [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
We are completely outraged!
Because of some recent changes in the security policy or whatever our addon was DELETED from ALL the users.
There was no warning, no notification, NOTHING.
This was the problem in our Manifest file:
"content_security_policy": "script-src 'self' chrome-extension:// https://; object-src 'self'",
It worked like this for years..
And this is the error when trying to install it:
Failed to load extension from:
Invalid value for 'content_security_policy': Both 'script-src' and 'object-src' directives must be specified (either explicitly, or implicitly via 'default-src'), and both must whitelist only secure resources. You may include any of the following sources: "'self'", "'unsafe-eval'", "http://", "http:// localhost", or any "https://" or "chrome-extension://" origin. For more information, see http://developer.chrome.com/extensions/contentSecurityPolicy.html
When this row is removed it works fine.
We want Google to fix it now. Add-on is a basic part of our product, without it our product is not as useful. We have invested money in it. This is not acceptable for us that Google will just take and remove it from all our users.
How do we contact Google for this? I couldn't find any way to contact them. We want them to fix this issue and reinstall the addon to all the users that had it. We don't care how they are gonna do it. They deleted it, so they should deal with it now.
What is the problem with that line and how do we fix it? our add-on is changing the Chrome new tab and it seems like without it, it stops working.
Please help!
Thanks
What is the problem with that line and how do we fix it? our add-on is changing the Chrome new tab and it seems like without it, it stops working.
chrome-extension:// and https:// is the problem. First off, it's a syntax error. The correct syntax would be https://*.
Second you're supposed to specify a small set of domains that are allowed to run code. You're supposed to specify one or two websites from which scripts can be loaded.
For example: https://domainweloadscriptsfrom.com
Google has a whole section on what is and isn't allowed.

What is the definition of an "active user" of a chrome extension [duplicate]

This question already has an answer here:
How are Chrome Extension's weekly users counted? Is it the number of users who have it installed? Or the one's clicking on popup?
(1 answer)
Closed 8 years ago.
I am trying to understand the "weekly users" stat for my chrome extension that is available at the developer dashboard.
Another post noted that this is the number of weekly, active users (not installed). But I have not seen a definition of "active".
Our extension is a shopping aid that automatically deploys a toolbar if someone hits the landing page of certain shopping pages. Then, there is an opportunity to interact with it.
In this case, would "active" include: anyone using the chrome browser with the extension installed? or anyone who had the extension activate by visiting a site? or anyone who actually interacted with the extension with a positive click?
My guess, but it's not an authoritative answer, would be "Chrome profiles that requested updates from Web Store".
So, an active user is a Chrome instance that accessed the internet within the time period allowing for an update check, with your extension simply installed.
If you need to track activity within the extension, the preferred method would be Google Analytics event tracking. Tutorial here.

How to modify an extension from the Chrome Web Store? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I've seen this extension in the Chrome Web store, which shows the newest videos of a YouTube channel. I want to modify this extension in order to make it work with a different channel.
How can I get this done?
You've got two options:
Contact the extension's developer, and ask for assistance.
Edit the source code
I'm going to explain how you can modify an extension, and install it, in easy terms.
Getting the source and modifying it
Install the Chrome extension source viewer.
Go to the page in the Chrome Web Store of the extension you want to modify.
Click on the yellow CRX button in the context menu, and choose Download (screenshot).
Extract the zip file.
Read the source code, and change what needs to be changed (in your particular case, I had quickly identified that you wanted to change edit config.js and change the "channel" property). Save the changes.
Using the modified version of the extension.
Visit the Chrome extension page (chrome://extensions/).
Enable Developer mode, by activating the switch in the upper-right corner.
Click on the "Load unpacked extension" button.
Select the folder of your extension (to know which folder is correct, check whether the folder contains a file called manifest.json).
Confirm. You're done.
Unless you've made a mistake in either of these steps (including the modification of the source code), the modified extension should work as intended.
Ethics
Modifying someone else's extension for personal use is not a big deal. However, do not distribute this extension without the original developer's consent. The original author has put lots of efforts in creating the extension, and might even have his/her contact details on it. If you distribute a (modified) copy of the extension, the original author cannot update the extension any more, so s/he cannot resolve bugs.
Even worse, if you turn the extension in a bad shape, users will complain to the original author, because their contact details are on it.

Chrome Extension: How to create? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am experienced in HTML and JavaScript but have never made a (real) Chrome Extension (other than the "Hello World' tutorial).
What I want to do is make an extension that adds functionality to viewing images. Basically I want a pieice of JavaScript to load when you go to a .jpg, .png, ect. page.
I couldn't get much out of the "Hello World" tutorial or the Docs and I've looked at code from XML Tree, but I'm having trouble understanding it.
I don't know where to go from here.
Since you're experienced in JavaScript and HTML, tell you what the best source is?
http://developer.chrome.com/extensions/getstarted.html
Documentation
The above link (Chrome Extension Documentation) is so simple to read once you get a hang of it. For example, I didn't know JavaScript when I created my first Chrome Extension (Reload all tabs). I recommend you to read the docs (will only take you an hour), and follow the steps that you need.
Make sure you understand the different UI's you can tap to
Browser Actions: You use browser actions to put icons in the main Chrome toolbar.
Context Menus: You use context menus to add items to Chromes context menu.
Desktop Notifications: Use desktop notifications to notify users that something is important.
Option Pages: If you want an options page, this is your guy!
Page Actions: If you want to override certain pages (New Tab, History, Bookmark Manager)
Make sure you realize there are many browser interactions that you can tap into:
Bookmarks: Access to your bookmarks
Cookies: Access to Cookies
History: Access to History
Management: Access to Extension Management
Tabs: Access to your Tabs
Windows: Access to your Windows (which has Tabs).
Make sure you understand the difference between Background Pages and Content Scripts, and their limitations.
Make sure you realize there are some neat functions in the Chrome.* API.
Make sure you understand permissions.
Many more
145 Chrome Questions I answered on Stackoverflow
If you want more examples, I have answered many questions regarding Chrome Extensions that might help you get started (145+ Questions Answered), for example, here are some of the more recent ones:
Content Script Skeleton
Send data from Background Page to Content Script
Communication with the embedding page, Simple fetching of the pages JS variable
Taking Screenshots in Chrome
Walkthrough building an extension
Executing JavaScript when a user clicks on a browser action.
How to capture selected text and send it to a web service
Walkthrough how to create an extension to access Disqus Comment Box
Walkthrough how to highlight the DIV that the mouse if hovering over
Walkthrough how to move to the top of the page extension
Walkthrough how to create a bubble overlay when you select text.
etc and 120 more answers for Chrome Extensions, the above is what I copied from the results on the first page. So a search in Google will get you many results.
Real open source extension I created
If you want to see real source code of the extensions I have written (some are super small, some are super big):
Reload all tabs extension
Open link in a foreground tab extension
HTML5 Haptics Chrome extension
Set Wallpaper extension
Prayer times extension
Facebook friend exporter extension
Proxy Anywhere extension
Resources
If you still want more resources, you can:
Read the documentation.
Read the Official Chromium Extension Mailing list
The unofficial Internet Relay Chatroom #chromium-extensions on irc.freenode.net
Google (Will bring you to Stackoverflow, or Quora)
I hope this helped!
well it’s not that tough to create a chrome extension ,anyone who has a basic understanding of HTML,CSS,Javascript can actually make one!
If you want to make a extension I have wrote an article on Medium it might be useful here's the link
Also I have attached my code on github here’s the link
Keep Learning!

Resources