Savee

Save images from any site straight into your boards on savee.it

Saveeคืออะไร?

Savee เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://savee.it และคุณลักษณะหลักของมันคือ "Save images from any site straight into your boards on savee.it"

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

screenshot
screenshot
screenshot

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

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

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

                        Allows you to save any image from any website straight into your Savee boards.                    

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

ชื่อ Savee Savee
ID hhefhkepfnmcgalemmofagaioeegonbc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/savee/hhefhkepfnmcgalemmofagaioeegonbc
คำอธิบาย Save images from any site straight into your boards on savee.it
ขนาดไฟล์ 18.47 KB
จำนวนการติดตั้ง 10,490
เวอร์ชันปัจจุบัน 2.3.16
อัปเดตครั้งล่าสุด 2022-03-04
วันที่เผยแพร่ 2019-05-25
คะแนน 3.92/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา https://savee.it
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://savee.it/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icon_toolbar.png",
            "38": "icon_toolbar_2x.png"
        },
        "default_title": "Savee"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "Save images from any site straight into your boards on savee.it",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2,
    "name": "Savee",
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus",
        "background",
        "webRequest",
        "activeTab",
        "storage"
    ],
    "version": "2.3.16",
    "web_accessible_resources": [
        "icon_48.png",
        "content.js"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            }
        }
    },
    "options_ui": {
        "page": ".\/options\/options.html",
        "open_in_tab": false
    }
}