Posts by Marta • 49 points
4 posts
-
0
votes1
answer109
viewsQ: Get extension permissions
I’m trying to get permissions from the user when a gmail link is posted on facebook. The goal is to share gmail content on facebook. //code from facebook window.fbAsyncInit = function() { FB.init({…
google-chrome-extensionasked Marta 49 -
0
votes1
answer736
viewsQ: How to access the url of the current tab
I have part of this code that belongs to an extension of Chrome. Clicking the share button does not share the content of the page I want. Does anyone know how to share the page you are on at the…
google-chrome-extensionasked Marta 49 -
0
votes1
answer131
viewsQ: Extension for Chrome does not run
manifest: { "manifest_version": 2, "name": "Gmail Extension", "version": "1.0", "description": "Share your mail from Gmail on facebook.", "browser_action": { "default_icon": "gmail.png" },…
google-chrome-extensionasked Marta 49 -
4
votes2
answers828
viewsQ: Change date format in PHP
I’m trying to change the date format as follows: public function getDate() { $date=$this->date; return $date->DATE_FORMAT($date,'%b %d %Y %h:%i %p'); } But I’m not getting the date in AM and…