{"id":22177279,"url":"https://github.com/derekbtw/messenger-mysite","last_synced_at":"2025-07-26T16:31:24.975Z","repository":{"id":257765990,"uuid":"55794353","full_name":"derekbtw/messenger-mysite","owner":"derekbtw","description":"Facebook Messenger on your website","archived":false,"fork":false,"pushed_at":"2018-09-12T16:55:45.000Z","size":1434,"stargazers_count":8,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-09-18T15:44:00.470Z","etag":null,"topics":["css","diy","facebook","facebook-messenger","js","messenger","website"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/derekbtw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-04-08T16:39:05.000Z","updated_at":"2018-04-25T23:27:25.000Z","dependencies_parsed_at":"2024-09-18T15:44:03.465Z","dependency_job_id":"906a60d7-f621-4e03-b3ca-13ccb074b65f","html_url":"https://github.com/derekbtw/messenger-mysite","commit_stats":null,"previous_names":["derekbtw/messenger-mysite"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derekbtw%2Fmessenger-mysite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derekbtw%2Fmessenger-mysite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derekbtw%2Fmessenger-mysite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derekbtw%2Fmessenger-mysite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/derekbtw","download_url":"https://codeload.github.com/derekbtw/messenger-mysite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227694795,"owners_count":17805632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","diy","facebook","facebook-messenger","js","messenger","website"],"created_at":"2024-12-02T08:26:47.226Z","updated_at":"2024-12-02T08:26:47.760Z","avatar_url":"https://github.com/derekbtw.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Messenger-Mysite\nFacebook Messenger on your website\n\n### Version\n0.0.1\n\nThis is a tiny package that lets you add Facebook Messenger to your website for chat functionality with almost zero installation. The chat icon opens a chat window with you from messenger.com (m.me). This can be done with Pages and personal accounts. It will also direct them to a chat with you in Messenger if they're on iOS as well. I haven't tested this with Android yet.\n\n\n\u003cimg src=\"http://i.imgur.com/6wYl59g.png\"/\u003e\n\n\u003cimg src=\"http://i.imgur.com/Gcw3B4P.png\"/\u003e\n\nThis is still in the early stages so contributing to the project is greatly appreciated! Maybe some more icon templates?\n\n### Getting Started\n\n* Upload all the things to the root of your site, or just the CSS and JS assuming your site is already built.\n* Include this on your pages. [Balloon.css] is recommended so people know what the button does.\n\n```html\n\u003clink href=\"css/balloon.min.css\" rel=\"stylesheet\"\u003e \u003c!-- optional tooltips --\u003e\n\u003clink href=\"css/messenger-mysite.css\" rel=\"stylesheet\"\u003e\n```\n```html\n\u003cscript src=\"https://code.jquery.com/jquery-1.12.3.min.js\"\u003e\u003c/script\u003e \u003c!-- if needed --\u003e\n\u003cscript src=\"js/messenger-mysite.min.js\"\u003e\u003c/script\u003e\n```\n\n* Paste this somewhere on your pages like the footer with your Facebook username included in the URL.\n\n```html   \n\u003c!-- left messenger --\u003e\n\u003ca class=\"popup\" href=\"https://m.me/[your Facebook username]\"\u003e\n  \u003cdiv id=\"m-ios\"\u003e\n    \u003cdiv class=\"messenger-ios hvr-grow\" data-balloon=\"Chat with us!\" data-balloon-pos=\"right\"\u003e\u003c/div\u003e\n  \u003c/div\u003e\n\u003c/a\u003e\n\n\u003c!-- right messenger --\u003e\n\u003ca class=\"popup\" href=\"https://m.me/[your Facebook username]\"\u003e\n  \u003cdiv id=\"m-android\"\u003e\n    \u003cdiv class=\"messenger-android hvr-float\" data-balloon=\"Chat with us!\" data-balloon-pos=\"left\"\u003e\u003c/div\u003e\n  \u003c/div\u003e\n\u003c/a\u003e\n```\n\n* Lastly, initialize it with some settings. More settings can be found in /js/struck-messenger.js\n\n```html\n\u003cscript type=\"text/javascript\"\u003e \n  $('.popup').popupWindow({ \n    height:500, \n    width:640, \n    centerScreen:1\n  }); \n\u003c/script\u003e\n```\n\n* That's it!\n\nPSD files are included in the /img directory (with a demo logo by [Freepik] from [Flaticon]) for your chat icons. Make sure you read the [Facebook Messenger Branding Guidelines] before you make one.\n\nLicense\n----\n\nMIT\n\n\n   [Getting Started]: \u003chttps://github.com/struck-io/messenger#getting-started\u003e\n   [Balloon.css]: \u003chttp://kazzkiq.github.io/balloon.css/\u003e\n   [Facebook Messenger Branding Guidelines]: \u003chttps://developers.facebook.com/docs/messenger/brand-guidelines\u003e\n   [Freepik]: \u003chttp://www.freepik.com/\u003e\n   [Flaticon]: \u003chttp://www.flaticon.com/\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderekbtw%2Fmessenger-mysite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderekbtw%2Fmessenger-mysite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderekbtw%2Fmessenger-mysite/lists"}