target="_blank"-toggler
Toggle target="_blank" on key-press
target="_blank"-toggler क्या है?
target="_blank"-toggler augnustin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle target="_blank" on key-press"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में target="_blank"-toggler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a pain not to being aware whether clicking on a link will open a new tab or not. To avoid this issue, this extension brings a different cursor on new tab link openers. Besides it is possible to switch between opening new tab or not by pressing the `Ctrl`/`Cmd` + `Shift` keys. More details on the complete blog post: https://augustin-riedinger.fr/en/resources/thoughts-on-target-blank And source code is here: https://github.com/augnustin/target_blank-toggler
एक्सटेंशन की मूल जानकारी
नाम | target="_blank"-toggler |
ID | emjjmkkcdllendgbldliiphlbpnomnjk |
आधिकारिक URL | https://chromewebstore.google.com/detail/targetblank-toggler/emjjmkkcdllendgbldliiphlbpnomnjk |
विवरण | Toggle target="_blank" on key-press |
फ़ाइल का आकार | 255 KB |
स्थापना संख्या | 283 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2017-11-14 |
प्रकाशन तिथि | 2017-11-14 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | augnustin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/augnustin/target_blank-toggler |
सहायता पृष्ठ URL | https://github.com/augnustin/target_blank-toggler/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "target=\"_blank\"-toggler", "version": "0.1.0", "manifest_version": 2, "description": "Toggle target=\"_blank\" on key-press", "homepage_url": "https:\/\/augustin-riedinger.fr\/en\/resources\/thoughts-on-target-blank", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "web_accessible_resources": [ "src\/style.css", "images\/cursor.png", "images\/cursor-ext.png" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/toggler.js" ] } ] } |