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.
Open link in same tab, pop-up as tabとは何ですか?
Open link in same tab, pop-up as tabはwerty1stによって開発されたChromeの拡張機能で、その主な機能は「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.」です。
拡張機能のスクリーンショット
Open link in same tab, pop-up as tab拡張機能のCRXファイルをダウンロード
Open link in same tab, pop-up as tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Converts popups to tabs 拡張機能の基本情報
| 名前 | |
| ID | jbhbalpncehdfjnfcmmimecdhalmjjem |
| 公式URL | https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jbhbalpncehdfjnfcmmimecdhalmjjem |
| 説明 | 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. |
| ファイルサイズ | 451 KB |
| インストール数 | 31,039 |
| 現在のバージョン | 3.1.2 |
| 最終更新日 | 2020-05-07 |
| 公開日 | 2020-05-07 |
| 評価 | 4.17/5 合計 12 レビュー |
| 開発者 | werty1st |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/werty1st/popup2tab/blob/master/readme.md |
| ヘルプページのURL | https://github.com/werty1st/popup2tab/issues |
| 対応言語 | 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
}
} | |