Blobs

Your personalized search engine

Blobsคืออะไร?

Blobs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blobs.co และคุณลักษณะหลักของมันคือ "Your personalized search engine"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Blobs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Blobs Extension helps you copy and save small yet important pieces of information from a webpage along with their links to your blobs collection. Blob Extension also lets you bookmark an entire webpage and it automatically saves an important paragraph (200 words) in the webpage as part of the bookmark. Blob Extension thus helps you manage, organize and retrieve your information along with its web source with ease.                    

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

ชื่อ Blobs Blobs
ID hgnbaogggkflalfgnhlnbbkokocjimke
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blobs/hgnbaogggkflalfgnhlnbbkokocjimke
คำอธิบาย Your personalized search engine
ขนาดไฟล์ 238 KB
จำนวนการติดตั้ง 71
เวอร์ชันปัจจุบัน 2.2
อัปเดตครั้งล่าสุด 2020-11-22
วันที่เผยแพร่ 2020-08-18
ผู้พัฒนา https://blobs.co
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://blobs.co
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blobs",
    "description": "Your personalized search engine",
    "homepage_url": "https:\/\/blobs.co",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/jquery-3.5.0.min.js",
            "js\/moment.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Blobs",
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "toastr.css"
            ],
            "js": [
                "js\/jquery-3.5.0.min.js",
                "js\/toastr.min.js",
                "js\/utils.js",
                "js\/content_notify.js"
            ]
        },
        {
            "matches": [
                "*:\/\/blobs.co\/*"
            ],
            "js": [
                "js\/jquery-3.5.0.min.js",
                "js\/blob.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/blobs.co\/*"
            ],
            "js": [
                "js\/jquery-3.5.0.min.js",
                "js\/logout.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications",
        "https:\/\/api.blobs.co\/*"
    ],
    "version": "2.2",
    "web_accessible_resources": [
        "js\/inject.js"
    ]
}