SmarterQueue
SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share.
SmarterQueue란 무엇입니까?
SmarterQueue은(는) https://smarterqueue.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share."입니다.
확장 프로그램 스크린샷
SmarterQueue 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SmarterQueue lets your schedule your social posts to Facebook, Twitter, LinkedIn, Pinterest, and Instagram. The SmarterQueue Chrome Extension lets you share any webpage or image that you find online, in a couple of clicks - publish it straight away, schedule a time, or add it to your Queue to be posted once, or recycled. Whether you're reading a blog post, an article you found on Facebook, Twitter, or your favorite news reader; click the Q icon to create a post with the content. You can edit the post text for each platform, add your saved hashtags and snippets, add images from the link, choose scheduling options, and preview the post for each social platform.
확장 프로그램 기본 정보
이름 | SmarterQueue |
ID | floofkpjijhgipeklkmpocopjjimfebm |
공식 URL | https://chromewebstore.google.com/detail/smarterqueue/floofkpjijhgipeklkmpocopjjimfebm |
설명 | SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share. |
파일 크기 | 50.8 KB |
설치 횟수 | 1,542 |
현재 버전 | 0.2.1 |
최근 업데이트 | 2022-04-29 |
출시 날짜 | 2020-11-06 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://smarterqueue.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://smarterqueue.com |
도움말 페이지 URL | https://help.smarterqueue.com |
개인정보 보호 정책 페이지 URL | https://smarterqueue.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SmarterQueue", "description": "SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share.", "version": "0.2.1", "homepage_url": "https:\/\/smarterqueue.com\/", "browser_action": { "default_icon": { "16": "images\/favicon-16x16.png", "48": "images\/favicon-48x48.png", "128": "images\/favicon-128x128.png" }, "default_title": "Share this page with SmarterQueue" }, "icons": { "128": "images\/favicon-128x128.png", "16": "images\/favicon-16x16.png", "48": "images\/favicon-48x48.png" }, "permissions": [ "activeTab" ], "web_accessible_resources": [ "css\/common.css", "images\/img-sq-share-button.png" ], "externally_connectable": { "matches": [ "https:\/\/*.smarterqueue.com\/*" ] }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/common.css" ], "js": [ "jquery-3.5.1.min.js", "content_script.js", "helpers.js" ], "run_at": "document_end" } ] } |