oEmbed pop-out
Creates a pop-out window for content utilising the oEmbed API
oEmbed pop-out란 무엇입니까?
oEmbed pop-out은(는) Martin Hughes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Creates a pop-out window for content utilising the oEmbed API"입니다.
확장 프로그램 스크린샷
oEmbed pop-out 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Take advantage of content providers using the oembed API. If a page publishes that embedded content is available, then the oEmbed pop-out icon will appear in your URL bar, allowing you to view the content in a pop-out window and continue browsing the web. Perfect for watching YouTube videos while browsing the internet. See http://oembed.com/#section7 for a full list of oEmbed providers. Here's a quick list: YouTube CollegeHumor Vimeo slideshare FunnyOrDie Daily Motion Currently only supports iframe embedded. Object embedding will be coming shortly. ===================== Change log: https://github.com/martinph/oEmbed-pop-out/releases
확장 프로그램 기본 정보
이름 | |
ID | iilknijhfchaabacafklhmmlpbedehlg |
공식 URL | https://chrome.google.com/webstore/detail/oembed-pop-out/iilknijhfchaabacafklhmmlpbedehlg |
설명 | Creates a pop-out window for content utilising the oEmbed API |
파일 크기 | 39.88 KB |
설치 횟수 | 243 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2014-07-24 |
출시 날짜 | 2014-07-24 |
평점 | 1.00/5 총 2 개의 평점 |
개발자 | Martin Hughes |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/martinph/oEmbed-pop-out |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "oEmbed pop-out", "version": "1.0.1", "description": "Creates a pop-out window for content utilising the oEmbed API", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": false, "js": [ "jquery-1.9.1.min.js", "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "page_action": { "default_icon": "icon-16.png", "default_title": "There's embedded content for this page!" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |