Savee

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

Vad är Savee?

Savee är en Chrome-tillägg utvecklad av https://savee.it, och dess huvudfunktion är "Save images from any site straight into your boards on savee.it".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Savee-förlängningens CRX-fil

Ladda ner Savee-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Savee Savee
ID hhefhkepfnmcgalemmofagaioeegonbc
Officiell webbadress https://chromewebstore.google.com/detail/savee/hhefhkepfnmcgalemmofagaioeegonbc
Beskrivning Save images from any site straight into your boards on savee.it
Filstorlek 18.47 KB
Antal Installationer 10,490
Aktuell Version 2.3.16
Senast Uppdaterad 2022-03-04
Publiceringsdatum 2019-05-25
Betyg 3.92/5 Totalt 25 Betyg
Utvecklare https://savee.it
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://savee.it/
Stödda Språk 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
    }
}