tumblr redirector
redirect Tumblr image urls to large size (1280)
什么是tumblr redirector?
tumblr redirector是由Jonathan Bao开发的Chrome扩展程序,该扩展的主要功能是“redirect Tumblr image urls to large size (1280)”。
下载tumblr redirector扩展crx文件
下载tumblr redirector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically redirects image urls on Tumblr to large size.
For example, if you try to access https://foo.media.tumblr.com/bar/foo_bar_400.jpg
instead it will send you to https://foo.media.tumblr.com/bar/foo_bar_1280.jpg
Works for jpg, png but not gif. Modifies the url in the main address bar before the request is sent. chrome.webRequest.onBeforeRequest.addListener(
redirect,
{urls:[],types:["main_frame"]},
["blocking"]);
Author: Jonathan Bao 扩展基本信息
| 名称 | |
| ID | mifghbjicbjfgdegpdjdomibhiocidpc |
| 官方URL | https://chromewebstore.google.com/detail/tumblr-redirector/mifghbjicbjfgdegpdjdomibhiocidpc |
| 简介 | redirect Tumblr image urls to large size (1280) |
| 文件大小 | 4.11 KB |
| 安装次数 | 29 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-07-10 |
| 上架时间 | 2018-07-10 |
| 开发者 | Jonathan Bao |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "redirect Tumblr image urls to large size (1280)",
"manifest_version": 2,
"name": "tumblr redirector",
"version": "1.0",
"author": "Jonathan Bao",
"email": "[email protected]",
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
]
}
} | |