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ファイルをダウンロード
Social Media Share拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |