oEmbed pop-out
Creates a pop-out window for content utilising the oEmbed API
Qu'est-ce que oEmbed pop-out ?
oEmbed pop-out est une extension Chrome développée par Martin Hughes, et sa fonction principale est "Creates a pop-out window for content utilising the oEmbed API".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension oEmbed pop-out
Téléchargez les fichiers d'extension oEmbed pop-out au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | iilknijhfchaabacafklhmmlpbedehlg |
URL Officiel | https://chrome.google.com/webstore/detail/oembed-pop-out/iilknijhfchaabacafklhmmlpbedehlg |
Description | Creates a pop-out window for content utilising the oEmbed API |
Taille du Fichier | 39.88 KB |
Nombre d'Installations | 243 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2014-07-24 |
Date de Publication | 2014-07-24 |
Évaluation | 1.00/5 Total 2 Évaluations |
Développeur | Martin Hughes |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/martinph/oEmbed-pop-out |
Langues Prises en Charge | 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 } |