Immediate Shot

Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.

Qu'est-ce que Immediate Shot ?

Immediate Shot est une extension Chrome développée par Go Noji, et sa fonction principale est "Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Immediate Shot

Téléchargez les fichiers d'extension Immediate Shot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Download screenshots with one click
According to the situation,

・ Capture the full screen in perfect resolution
-Capture the whole screen quickly anyway
・ Capture only the displayed area

You can set the selection in advance and also control the file name to download.

UPDATE(v0.1.0): Fixed a bug where active tabs were not being captured when multiple windows were open.
UPDATE (v0.1.1): You can now set a config value to deal with the error that occurs when doing a fast capture in Chrome 92 or later.
Added support for content that cannot be displayed without scrolling the page.                    

Informations de Base sur l'Extension

Nom Immediate Shot Immediate Shot
ID lopfaoacjcbbcfhmjofbfgfmdllclhln
URL Officiel https://chromewebstore.google.com/detail/immediate-shot/lopfaoacjcbbcfhmjofbfgfmdllclhln
Description Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.
Taille du Fichier 52.35 KB
Nombre d'Installations 77
Version Actuelle 0.1.1
Dernière Mise à Jour 2021-08-24
Date de Publication 2020-02-28
Évaluation 5.00/5 Total 1 Évaluations
Développeur Go Noji
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Go-Noji/Immediate-Shot
Langues Prises en Charge en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Immediate Shot",
    "version": "0.1.1",
    "description": "__MSG_msg_desc__",
    "default_locale": "en",
    "background": {
        "persistent": false,
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "page.bundle.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "128.png"
        }
    },
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "32": "32.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "background",
        "contextMenus",
        "downloads"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2
}