BeamTab

Beam your current tab to your other Chrome browsers.

BeamTabคืออะไร?

BeamTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stelabouras และคุณลักษณะหลักของมันคือ "Beam your current tab to your other Chrome browsers."

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

screenshot
screenshot
screenshot

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

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

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

                        BeamTab is a Chrome extension that lets you "beam" your current tab to your other Chrome browsers. Unlike extensions like Pushbullet, it doesn't beam the tab to all of your Chrome devices but it lets you choose the device you want to send it to.

BeamTab autogenerates your devices' names using some weird animal names, which you can change at any time by visiting the Options page.

You can also beam tabs to your friends! Just send your share link and get the share link of your friends and start beaming pages with each other!

This extension is open source: https://github.com/stelabouras/BeamTab                    

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

ชื่อ BeamTab BeamTab
ID hjimekoedodkoapedlmjngpelnlnoehf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/beamtab/hjimekoedodkoapedlmjngpelnlnoehf
คำอธิบาย Beam your current tab to your other Chrome browsers.
ขนาดไฟล์ 56.23 KB
จำนวนการติดตั้ง 19
เวอร์ชันปัจจุบัน 1.9
อัปเดตครั้งล่าสุด 2017-04-17
วันที่เผยแพร่ 2017-04-17
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา stelabouras
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/stelabouras/beamtab
URL หน้านโยบายความเป็นส่วนตัว https://www.linkpack.io/terms
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Stelios Petrakis",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/forge-sha256.js",
            "js\/events.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-76.png"
        },
        "default_title": "BeamTab"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+B"
            }
        }
    },
    "web_accessible_resources": [
        "css\/extractor.css"
    ],
    "options_page": "html\/options.html",
    "description": "Beam your current tab to your other Chrome browsers.",
    "homepage_url": "http:\/\/stelabouras.com",
    "icons": {
        "16": "icons\/icon-16.png",
        "256": "icons\/icon-256.png"
    },
    "manifest_version": 2,
    "name": "BeamTab",
    "permissions": [
        "idle",
        "contextMenus",
        "tabs",
        "storage",
        "notifications",
        "identity",
        "identity.email",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/extractor.js"
            ],
            "css": [
                "css\/extractor.css"
            ]
        }
    ],
    "version": "1.9"
}