Social Media Share
Share any website on Facebook, Twitter and LinkedIn with just one click
Social Media Share란 무엇입니까?
Social Media Share은(는) Sahil Dua에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share any website on Facebook, Twitter and LinkedIn with just one click"입니다.
확장 프로그램 스크린샷
Social Media Share 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Share anything on your social media account on Facebook, Twitter (X) and LinkedIn. A pretty basic chrome extension which does a little, but does that extremely well. Suppose you're reading blog post and you really like it and want to share it on your social profile. Either you will copy the link to that post and then share it, or you will search for social media share icons on the blog to share the post. Let's make this a bit easier. Actually a lot easier. How about doing all this with just 1 click? Here's how - Install 'Social Media Share' extension and whenever you feel like sharing any link, just click on 'Social Media Share' button in the browser top right bar, and choose which platform you want to share the link on. And, that's it. Yes, that's all you need to do to share any link with your social media networks. For feedback, write to [email protected]
확장 프로그램 기본 정보
이름 | Social Media Share |
ID | lfimbgdhgeoeadgiejnpbepmooblmigd |
공식 URL | https://chromewebstore.google.com/detail/social-media-share/lfimbgdhgeoeadgiejnpbepmooblmigd |
설명 | Share any website on Facebook, Twitter and LinkedIn with just one click |
파일 크기 | 160 KB |
설치 횟수 | 2,388 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2023-09-07 |
출시 날짜 | 2016-06-20 |
평점 | 4.38/5 총 16 개의 평점 |
개발자 | Sahil Dua |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Social Media Share", "description": "Share any website on Facebook, Twitter and LinkedIn with just one click", "version": "1.0.3", "browser_action": { "default_popup": "main.html", "default_icon": "assets\/icons\/icon-16.png" }, "icons": { "16": "assets\/icons\/icon-16.png", "128": "assets\/icons\/icon-128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "js": [ "assets\/js\/script.js" ] } ], "web_accessible_resources": [ "assets\/share-icons\/twitter.png", "assets\/share-icons\/facebook.png", "assets\/share-icons\/linkedin.png" ] } |