Open Link in Same Tab
Makes links open in the same tab
Open Link in Same Tab란 무엇입니까?
Open Link in Same Tab은(는) fclancy78에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes links open in the same tab"입니다.
Open Link in Same Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Stops links from opening in a new tab. Also adds an "Open link in same tab" option to the right-click menu for links. Click on the icon or press Alt-B to add a website to the blacklist or whitelist. (Note: individual links can be forced to open in the same tab by dragging them to the address bar with the left mouse button held down instead of clicking them. This feature does not require the use of an extension.) 확장 프로그램 기본 정보
| 이름 | |
| ID | kgpefningcojblgciiljmabggbbjiojb |
| 공식 URL | https://chrome.google.com/webstore/detail/open-link-in-same-tab/kgpefningcojblgciiljmabggbbjiojb |
| 설명 | Makes links open in the same tab |
| 파일 크기 | 40.43 KB |
| 설치 횟수 | 10,000 |
| 현재 버전 | 1.14 |
| 최근 업데이트 | 2017-08-17 |
| 출시 날짜 | 2017-08-17 |
| 평점 | 3.67/5 총 39 개의 평점 |
| 개발자 | fclancy78 |
| 결제 유형 | free |
| 지원되는 언어 | de,en,fr,nl,no,vi,da,es,it,pl,fi,sv,el,ru,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"persistent": false,
"scripts": [
"eventpage.js"
]
},
"commands": {
"_execute_browser_action": {
"description": "__MSG_blacklist_key__",
"suggested_key": {
"default": "Alt+B"
}
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"sametab.js"
],
"match_about_blank": true,
"matches": [
"*:\/\/*\/*",
"file:\/\/\/*"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_description__",
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
},
"manifest_version": 2,
"name": "__MSG_extension_name__",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"browser_action": {
"default_icon": {
"19": "icons\/pa_icon19.png",
"38": "icons\/pa_icon38.png"
},
"default_title": "__MSG_blacklist_key__"
},
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"version": "1.14"
} | |