PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Hvad er PowerTab?
PowerTab er en Chrome-udvidelse udviklet af Insane, og dens hovedfunktion er "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".
Udvidelsesskærmbilleder
Download PowerTab-udvidelses-CRX-fil
Download PowerTab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ihfgepigeejhaclnhdgmoinblbcalccc |
| Officiel URL | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
| Beskrivelse | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
| Filstørrelse | 20.13 KB |
| Antal Installationer | 34 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2013-09-16 |
| Udgivelsesdato | 2013-09-16 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | Insane |
| Betalingsmetode | free |
| Understøttede Sprog | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PowerTab",
"description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.",
"version": "1.0",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"contextMenus",
"clipboardWrite",
"tabs"
],
"icons": {
"16": "icon16x16.png",
"48": "icon48x48.png",
"128": "icon128x128.png"
},
"browser_action": {
"default_icon": "icon16x16.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_start"
}
]
} | |