tumblr redirector

redirect Tumblr image urls to large size (1280)

tumblr redirectorคืออะไร?

tumblr redirector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonathan Bao และคุณลักษณะหลักของมันคือ "redirect Tumblr image urls to large size (1280)"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย tumblr redirector

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ tumblr redirector tumblr redirector
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"
        ]
    }
}