Show Tab List
Show all sites in the current page
Vad är Show Tab List?
Show Tab List är en Chrome-tillägg utvecklad av pinibalilihamelech, och dess huvudfunktion är "Show all sites in the current page".
Tilläggsskärmbilder
Ladda ner Show Tab List-förlängningens CRX-fil
Ladda ner Show Tab List-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
Press Ctrl+Shift+Y to view a list of the sites used in the current page. Grundläggande Information om Tillägg
| Namn | |
| ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
| Officiell webbadress | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
| Beskrivning | Show all sites in the current page |
| Filstorlek | 8.67 KB |
| Antal Installationer | 14,454 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2015-03-13 |
| Publiceringsdatum | 2015-03-13 |
| Betyg | 2.11/5 Totalt 9 Betyg |
| Utvecklare | pinibalilihamelech |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Show Tab List",
"description": "Show all sites in the current page",
"version": "0.1",
"manifest_version": 2,
"icons": {
"16": "resources\/images\/icon-16.png",
"48": "resources\/images\/icon-48.png",
"128": "resources\/images\/icon-128.png"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs"
],
"background": {
"scripts": [
"resources\/js\/myBackground.js"
]
},
"commands": {
"toggle-tab-list": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Toggle tab list"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"resources\/js\/page.js"
]
}
]
} | |