BeamTab
Beam your current tab to your other Chrome browsers.
BeamTab란 무엇입니까?
BeamTab은(는) stelabouras에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Beam your current tab to your other Chrome browsers."입니다.
확장 프로그램 스크린샷
BeamTab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } |