SmarterQueue

SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share.

SmarterQueueคืออะไร?

SmarterQueue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://smarterqueue.com และคุณลักษณะหลักของมันคือ "SmarterQueue saves you hours when scheduling your social posts, and makes it easy to find great content to share."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SmarterQueue

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
        }
    ]
}