Open Link in Same Tab
Makes links open in the same tab
Open Link in Same Tab क्या है?
Open Link in Same Tab fclancy78 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes links open in the same tab"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Open Link in Same Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |