In my messenger chatbot, I would like to add a Share button at the bottom in the persistent menu below 'Help' I could not find any documentation on how to do this. Any help is appreciated
The persistent menu does not support the share button. The persistent menu is meant to be a way of navigating the bot. The share is meant for sharing specific message content, so their purpose is not really related.
Related
I'm trying to add a support page right in the extension window but all that I can find is adding a link to another page. I've included some pictures, as I don't know how to really describe the feature.
that's what I have currently, and below is what I want to have-
This is a screenshot of what I have on the dev page, concerning the support feature-
I'm not sure what I need to change, so any help would be appreciated! (Directed here from this chrome forum thread)
Go to https://chrome.google.com/webstore/developer/dashboard
Click "Edit your User Feedback preferences"
Check the "Enable User Feedback for all my apps in Chrome Webstore." box.
Note that neither you nor your users will get notified of new posts made in the webstore support section, so you probably want to direct users to a third party support platform, such as issues on the project's Github repo.
I am developing a little extensions called "Tab Bundler", which in short saves all the open tabs in a window into a bundle that can be opened with the click of a button. When a bundle is opened however, no history of how the user got to that url is saved, ie. the user can't click back to see how they got to that url. This is functionality I want to implement. I looked for a while, googling, looking thoroughly through the google chrome extension documentation: http://code.google.com/chrome/extensions/history.html. But I couldn't figure out how to get this information without tracking it myself. Is that the only option I have? Any thoughts would be really appreciated.
Thanks!
Look, many people tried this before. You are not alone in this quest!
At the moment the answer in Google Code was: anybody asked for it when they where developing the History API. Then there's no elegant way to access tabs' history.
Of course, you can hook chrome.tabs.onUpdated to record every page and make your own tab's history...
You could probably hook chrome.tab.onUpdate as well as some state or focus change hook to correlate.
I really want this, please make it!
I'm not sure if this is the correct exchange for this questions as I don't think it is explicitly programming related, but I can't think of a better place to ask the question.
I keep seeing this tab for chrome extensions that allows users to ask questions, suggest things or submit problems:
I haven't been able to find anything in the developer dashboard or in documentation about this tab. I know that I can get a support tab with a link by adding a url to the support link field in the project settings, but I can't figure out how to get the functionality shown here.
Go to https://chrome.google.com/webstore/developer/dashboard
Click in the link:
Edit your User Feedback preferences: User Feedback is disabled
And then enable it.
It's the same answer for Where does the Chrome web store "Support" tab come from?, it works for Apps and extensions.
I am curious to know how emojidom is able to show this icon on top of other applications. What it actually is? Because this icon pops up on whatsapp, hangouts, facebook messenger and other chatting applications. And also I can move this icon all around the screen. How is it doing so?
They may be using
android.permission.SYSTEM_ALERT_WINDOW
refer this
You should take a look at source of HALO implemented by ParanoidAndroid
https://github.com/ParanoidAndroid/HALO
Hi everyone
I want to develop a button like 'facebook like button'.
I am going to use it on my website and thinking it to share as iframe like facebook but I cannot think its securty because someone can develop a script that can click on it automatically.
I thought a solution using sessions but I couldn't make an algorithm completely.
How can I disallow autoclicks and which solution is the best? It can be any language I just want algorithm.
Thanks, have a nice day.
Edited :
Think a website like facebook. I login facebook and I can click on like button on any website.
Move to a new page and allow the logged in user to confirm that they were the ones who clicked the like
button.
I'm not sure that there's a surefire way to prevent clickjacking or the type of fraud you're referring to, given that you want to place your button in an iframe.
See http://ha.ckers.org/blog/20081007/clickjacking-details/ for more info.
You can't prevent this, once you have generated the like button, the button can be access directly.
You just can protect yourself using client side defence technologies like Comitari supplies.
They have a free product that protects you against ClickJacking and LikeJacking attacks.