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文件
下载SmarterQueue扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } ] } |