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".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα oEmbed pop-out oEmbed pop-out
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
}