Auto Closer

An extension that just close the tabs you don't need.

Vad är Auto Closer?

Auto Closer är en Chrome-tillägg utvecklad av Mt.blue81, och dess huvudfunktion är "An extension that just close the tabs you don't need.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Closer-förlängningens CRX-fil

Ladda ner Auto Closer-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

                        1. Add your site URL. (as a regular expression) option-image
2. Then open your site.
3. Site will close in a second.

It is mainly intended for closing tabs that are no longer needed when opening applications via a browser.
The delay to close can be changed in the extension option.                    

Grundläggande Information om Tillägg

Namn Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
Officiell webbadress https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
Beskrivning An extension that just close the tabs you don't need.
Filstorlek 13.68 KB
Antal Installationer 579
Aktuell Version 2.1.0
Senast Uppdaterad 2023-10-30
Publiceringsdatum 2021-01-13
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare Mt.blue81
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/MtBlue81/auto-closer
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Closer",
    "version": "2.1.0",
    "description": "An extension that just close the tabs you don't need.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}