3

我想要一个谷歌浏览器扩展来重新托管我点击的任何图像。

例如,我有一个带有使用<img>标签的图像的 html 文档。我想要一个扩展,它将将该图像重新托管到另一个图像主机。我在imgur 扩展名中看到了类似的东西。我不知道我应该从哪里开始,或者我应该怎么做才能完成这项工作。

提前感谢您的帮助!

4

1 回答 1

3

首先,您必须获得一个API密钥。如果每小时最多上传 50 次就足够了,并且您不想注册帐户,请获取匿名 API 密钥

我建议不要绑定可能会干扰页面的左键单击事件处理程序,而是使用chrome.contextMenusAPI 添加一个内容菜单条目。

清单文件manifest.json

{
  "name": "Rehost img at imgurl",
  "version": "1.0",
  "manifest_version": 2,
  "background": {"scripts":["background.js"]},
  "permissions": [
    "contextMenus",
    "http://*/*", // This permission is needed to fetch URLs
    "https://*/*"
  ]
}

将以下代码放入您的后台脚本中(使用chrome.contextMenus.create):

// background.js
chrome.contextMenus.create({
    title: "Rehost image",
    contexts: ["image"],
    onclick: function(info) {
        // Get the image from cache:
        var x = new XMLHttpRequest();
        x.onload = function() {
            // Create a form
            var fd = new FormData();
            fd.append("image", x.response); // x.response = blob
            fd.append("key", "API KEY HERE");

            // Now, upload the image
            var y = new XMLHttpRequest();
            y.onload = function() {
                var url = JSON.parse(xhr.responseText).upload.links.imgur_page;
                // Now, do something with the new url.
            };
            y.open('POST', 'http://api.imgur.com/2/upload.json');
            y.send(fd);
        };
        x.responseType = 'blob';    // Chrome 19+
        x.open('GET', info.srcUrl); // <-- info.srcUrl = location of image
        x.send();
    }
});

您可以向用户显示 URL(最简单的方法是prompt("Here's the URL:",url);,或使用localStorage将先前的 URL 映射到新主机和/或使用chrome.webRequestAPI 将图像请求重定向到新主机。


使用不同的网络服务/图像主机上传图片。http://picstore.eu/不提供 API,因此我们以编程方式提交表单。

// background.js
chrome.contextMenus.create({
    title: "Rehost image",
    contexts: ["image"],
    onclick: function(info) {
        // Get the image from cache:
        var x = new XMLHttpRequest();
        x.onload = function() {
            var file_name = info.srcUrl.split(/[?#]/)[0].split('/').pop();
            var fd = new FormData();
            fd.append("imgUrl", "");
            fd.append("fileName[]", file_name);
            fd.append("Search files", "Browse");
            fd.append("file[]", x.response, file_name);
            fd.append("alt[]", file_name.replace(/[-_]/g, " ").replace(/\.[^.]*$/, ""));
            //fd.append("private[0]", "1"); // "Private images.."
            //fd.append("shorturl[0]", "1"); // "Create short URLs using b54"
            fd.append("new_height[]", "");
            fd.append("new_width[]", "");
            fd.append("submit", "Upload");
            var y = new XMLHttpRequest();
            y.responseType = 'document'; // Chrome 18+ (but blob is 19+)
            y.onload = function() {
                var url = y.response.getElementById('codedirect').value;
                prompt("URL:", url);
                // Now, do something with the new url.
            };
            y.open('POST', 'http://picstore.eu/upload.php');
            y.send(fd);
        };           
        x.responseType = 'blob'; // Chrome 19+
        x.open('GET', info.srcUrl); // <-- info.srcUrl = location of image
        x.send();
    }
});
于 2012-07-08T09:40:08.337 回答