oEmbed pop-out
Creates a pop-out window for content utilising the oEmbed API
oEmbed pop-outคืออะไร?
oEmbed pop-out เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Martin Hughes และคุณลักษณะหลักของมันคือ "Creates a pop-out window for content utilising the oEmbed API"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย oEmbed pop-out
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } |