🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/31 23:43:47
🔄 下次更新时间:2026/02/01 00:43:47
手动刷新缓存

Embed Me!

Embed video, images from links.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

Autor
eight
Denně instalací
0
Celkem instalací
402
Hodnocení
6 0 0
Verze
0.4.0
Vytvořeno
18. 06. 2015
Aktualizováno
24. 10. 2023
Size
75,8 KB
Licence
MIT
Spustit na
všech stránkách

Embed Me!

An userscript to embed videos, images from anchor link.

Test page

Install the script and visit this page:
Demo page

Supported sites

Checkout the module folder. Contributions welcome!

Module

A module object should look like:

{
    name: "The module name",
    global: true,               // The module should work globally,
    domains: ["example.com"],   // or the module will only work on these domains.
    getPatterns: function() {
        // Return a list of regex object. Only matched urls will be sent to embed function.
        return [
            // ...
        ];
    },
    getEmbedFunction: function() {
        // Return an embedding function.
        //
        // Params:
        //   1...n  The capturing groups returned by regex pattern. n = groups.length.
        //   n+1    The url of the link.
        //   n+2    The text content of the link.
        //   n+3    The link itself.
        //   n+4    A replace function.
        //
        // Usually you can return new element back. If you have to replace element asynchronously,
        // send new element to replace function when you are finished.

        return function (url, text, node, replace) {
            // ...
        }
    }
}

Known issues


Some online embedding service

Changelog

  • 0.4.0 (Oct 25, 2023)

    • Change: bundle fumen-svg.
    • Change: drop gfycat.
    • Fix: twitch vod and clip.
    • Fix: initialize domain settings correctly.
  • 0.3.0 (Jan 12, 2020)

    • Refactor.
    • Add: fumen module.
    • Add: options to toggle each module.
    • Breaking: switch to webext-pref.
  • 0.2.1 (Oct 6, 2015)

    • Support more patterns in youtube module.
  • 0.2.0 (Jun 18, 2015)

    • Update GM_config.
    • Fix image max-width.
    • Fix imgur iframe.
    • Fix youtube bug.
  • 0.1.1 (Jun 17, 2015)

    • Add @noframes.
  • 0.1.0 (Jun 17, 2015)

    • First release.