Convert To Popup
Converts the current tab or link to a popup window
Vad är Convert To Popup?
Convert To Popup är en Chrome-tillägg utvecklad av rawbytz, och dess huvudfunktion är "Converts the current tab or link to a popup window".
Tilläggsskärmbilder
Ladda ner Convert To Popup-förlängningens CRX-fil
Ladda ner Convert To Popup-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
• Popup windows have no tabs, address bar, or bookmarks bar.
• Click the toolbar icon to convert the current tab into a Popup window.
• Assign a keyboard shortcut at the bottom of chrome://extensions to do the same.
• Right Click links to open them in a new Popup window.
• No persistent memory footprint. Grundläggande Information om Tillägg
| Namn | |
| ID | ipbclffpmnocdigdcpmahfmdlibcggal |
| Officiell webbadress | https://chromewebstore.google.com/detail/convert-to-popup/ipbclffpmnocdigdcpmahfmdlibcggal |
| Beskrivning | Converts the current tab or link to a popup window |
| Filstorlek | 7.13 KB |
| Antal Installationer | 1,409 |
| Aktuell Version | 1.6 |
| Senast Uppdaterad | 2018-03-07 |
| Publiceringsdatum | 2018-03-07 |
| Betyg | 4.36/5 Totalt 11 Betyg |
| Utvecklare | rawbytz |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Convert To Popup",
"version": "1.6",
"description": "Converts the current tab or link to a popup window",
"browser_action": {
"default_icon": "convert2Popup_128.png",
"default_title": "Convert to Popup"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"icons": {
"128": "convert2Popup_128.png"
},
"permissions": [
"contextMenus",
"activeTab"
],
"manifest_version": 2
} | |