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文件
下載oEmbed pop-out擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } |