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 |
| 官方網址 | 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"
]
}
} | |