Publer

Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks

Publerคืออะไร?

Publer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://publer.io และคุณลักษณะหลักของมันคือ "Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Publer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Publer Chrome extension allows you to create & schedule social media posts without having to open Publer on a new tab.

By installing this extension, you will be able to share with your network the article you're reading, a cute picture you find on the internet, or a quote you think it's worth sharing simply by right-clicking on them.

To share a webpage or a link, simply right-click on it and select "Share page with Publer".

To share a quote or text, simply select it, right-click on it and select "Share selection with Publer". 

To share an image, simply right-click on the image and select "Share image with Publer".

To make it easier for you:

- A "share" button will appear below every image that you see on the web

- The current webpage you're on will be automatically attached when activating the extension

Both these options can be disabled at any time by visiting the extension's settings page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Publer Publer
ID mbclkgocofhagldefeogoionalbpckoo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/publer/mbclkgocofhagldefeogoionalbpckoo
คำอธิบาย Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks
ขนาดไฟล์ 261 KB
จำนวนการติดตั้ง 4,607
เวอร์ชันปัจจุบัน 2.1.2
อัปเดตครั้งล่าสุด 2023-12-12
วันที่เผยแพร่ 2020-12-27
คะแนน 4.93/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา https://publer.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://publer.io
URL หน้าช่วยเหลือ https://help.publer.io
URL หน้านโยบายความเป็นส่วนตัว https://publer.io/privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Publer",
    "version": "2.1.2",
    "description": "Share content across Facebook, Instagram, Twitter, LinkedIn, and all major social networks in just a few clicks",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.bundle.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "favicons\/favicon-16x16.png",
        "32": "favicons\/favicon-32x32.png",
        "48": "favicons\/favicon-48x48.png",
        "64": "favicons\/favicon-64x64.png",
        "96": "favicons\/favicon-96x96.png",
        "128": "favicons\/favicon-128x128.png",
        "256": "favicons\/favicon-256x256.png",
        "512": "favicons\/favicon-512x512.png",
        "1024": "favicons\/favicon-1024x1024.png"
    },
    "action": {
        "default_title": "Publer"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+0",
                "mac": "Command+Shift+0",
                "chromeos": "Ctrl+Shift+0",
                "linux": "Ctrl+Shift+0"
            }
        },
        "ignite-extension-feature": {
            "suggested_key": {
                "windows": "Ctrl+Shift+0",
                "mac": "Command+Shift+0",
                "chromeos": "Ctrl+Shift+0",
                "linux": "Ctrl+Shift+0"
            },
            "description": "Initialize the extension"
        },
        "disconnect-extension-feature": {
            "suggested_key": {
                "windows": "Ctrl+Shift+9",
                "mac": "Command+Shift+9",
                "chromeos": "Ctrl+Shift+9",
                "linux": "Ctrl+Shift+9"
            },
            "description": "Initialize the extension"
        }
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/app.publer.io\/*",
        "https:\/\/app.publer.io"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dashboard.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "incognito": "not_allowed",
    "content_security_policy": {
        "extension_pages": "default-src 'self'; frame-src 'self' https:\/\/app.publer.io; style-src * 'self'; img-src 'self' data:;"
    }
}