Open link in same tab, pop-up as tab
Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.
Vad är Open link in same tab, pop-up as tab?
Open link in same tab, pop-up as tab är en Chrome-tillägg utvecklad av werty1st, och dess huvudfunktion är "Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.".
Tilläggsskärmbilder
Ladda ner Open link in same tab, pop-up as tab-förlängningens CRX-fil
Ladda ner Open link in same tab, pop-up as tab-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
Converts popups to tabs Grundläggande Information om Tillägg
| Namn | |
| ID | jbhbalpncehdfjnfcmmimecdhalmjjem |
| Officiell webbadress | https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jbhbalpncehdfjnfcmmimecdhalmjjem |
| Beskrivning | Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab. |
| Filstorlek | 451 KB |
| Antal Installationer | 31,039 |
| Aktuell Version | 3.1.2 |
| Senast Uppdaterad | 2020-05-07 |
| Publiceringsdatum | 2020-05-07 |
| Betyg | 4.17/5 Totalt 12 Betyg |
| Utvecklare | werty1st |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/werty1st/popup2tab/blob/master/readme.md |
| Hjälpsida URL | https://github.com/werty1st/popup2tab/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open link in same tab, pop-up as tab",
"short_name": "popup2tab",
"description": "Forces Chrome to open new tabs instead of pop-up windows and\/or links in the same tab by default instead of new or background tab.",
"version": "3.1.2",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"256": "images\/icon256.png",
"128": "images\/icon128.png",
"96": "images\/icon96.png",
"48": "images\/icon48.png"
},
"permissions": [
"tabs",
"storage"
],
"web_accessible_resources": [
"style\/*"
],
"browser_action": {
"default_icon": "images\/icon48.png",
"default_popup": "popup.html",
"default_title": "Open link in same tab, pop-up as tab [Free]"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
} | |