StackOverflow Tweaks Tool
A tool to tweak the StackOverflow UI and boost your productivity.
StackOverflow Tweaks Tool क्या है?
StackOverflow Tweaks Tool Riccardo Fasan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool to tweak the StackOverflow UI and boost your productivity."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में StackOverflow Tweaks Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
StackOverflow Tweaks Tool is an extension made for developers. The extension provides a small control panel where you can customize the UI of the StackOverflow question pages. You can: 1) Hide the side bars of the question pages. 2) Highlight the correct anwser. 3) Add a button to scroll to the correct answer. 4) Copy the code inside any answer with a button. 5) Copy the link of any answer with a button.
एक्सटेंशन की मूल जानकारी
नाम | StackOverflow Tweaks Tool |
ID | dfignoicphdepgloiodeaiokaepjbnan |
आधिकारिक URL | https://chromewebstore.google.com/detail/stackoverflow-tweaks-tool/dfignoicphdepgloiodeaiokaepjbnan |
विवरण | A tool to tweak the StackOverflow UI and boost your productivity. |
फ़ाइल का आकार | 47.53 KB |
स्थापना संख्या | 63 |
वर्तमान संस्करण | 1.5.8 |
अंतिम अपडेट | 2023-12-12 |
प्रकाशन तिथि | 2022-02-18 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Riccardo Fasan |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/riccardoFasan/stack-overflow-tweaks-tool |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "StackOverflow Tweaks Tool", "description": "A tool to tweak the StackOverflow UI and boost your productivity.", "icons": { "16": "icons\/StackOverlowTweaksTool_16x16.png", "48": "icons\/StackOverlowTweaksTool_48x48.png", "128": "icons\/StackOverlowTweaksTool_128x128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "js\/background.js" }, "action": { "default_title": "StackOverflow Tweaks Tool", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "icons\/stackOverflowBulb.svg", "icons\/copy.svg" ], "matches": [ "*:\/\/stackoverflow.com\/*" ] } ], "content_scripts": [ { "js": [ "js\/content-scripts\/dom.js", "js\/content-scripts\/features\/feature.js", "js\/content-scripts\/features\/anchor.js", "js\/content-scripts\/features\/highlight-answer.js", "js\/content-scripts\/features\/jump-to-the-answer.js", "js\/content-scripts\/features\/jump-to-the-most-voted.js", "js\/content-scripts\/features\/get-answer-link.js", "js\/content-scripts\/features\/copy-code.js", "js\/content-scripts\/features\/toggle-navs.js", "js\/content-scripts\/init.js" ], "css": [ "css\/style.css" ], "matches": [ "*:\/\/stackoverflow.com\/questions\/*\/*", "*:\/\/*.stackoverflow.com\/questions\/*\/*" ] } ], "version": "1.5.8" } |