Tab Timeout
This extension allows the user to set a timeout for the current tab to close
Vad är Tab Timeout?
Tab Timeout är en Chrome-tillägg utvecklad av brentengust, och dess huvudfunktion är "This extension allows the user to set a timeout for the current tab to close".
Ladda ner Tab Timeout-förlängningens CRX-fil
Ladda ner Tab Timeout-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
Grundläggande Information om Tillägg
| Namn | |
| ID | ipfhphdnknhbgmndmfhefbcdcopplijj |
| Officiell webbadress | https://chromewebstore.google.com/detail/tab-timeout/ipfhphdnknhbgmndmfhefbcdcopplijj |
| Beskrivning | This extension allows the user to set a timeout for the current tab to close |
| Filstorlek | 286 KB |
| Antal Installationer | 51 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2018-04-07 |
| Publiceringsdatum | 2018-04-07 |
| Utvecklare | brentengust |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Timeout",
"description": "This extension allows the user to set a timeout for the current tab to close",
"version": "1.0",
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"alarms"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |