One-click Screenshot
Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).
One-click Screenshot क्या है?
One-click Screenshot https://stefansundin.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में One-click Screenshot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
NOTE: I am not going to update this to MV3 so it will probably stop working eventually (whenever Chrome removes support for MV2). Note: In Chrome 59, a built-in feature was released that can take full page screenshots. It works better than this extension, so I recommend that you try to use the built-in feature instead of this extension. Please learn how to use the built-in feature here: https://github.com/stefansundin/one-click-screenshot/discussions/15 This extension is very simple. With just a few clicks, you can take a screenshot of an entire website and save it to a png file. There is no bloat or any fancy post-processing. There's also a keyboard shortcut that you can use. Source code: https://github.com/stefansundin/one-click-screenshot
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jcjhinpbjkmdphmhkikndcdlfpkgllfo |
आधिकारिक URL | https://chromewebstore.google.com/detail/one-click-screenshot/jcjhinpbjkmdphmhkikndcdlfpkgllfo |
विवरण | Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac). |
फ़ाइल का आकार | 41.85 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 0.0.4 |
अंतिम अपडेट | 2023-08-28 |
प्रकाशन तिथि | 2017-06-11 |
रेटिंग | 3.71/5 कुल 17 रेटिंग्स |
डेवलपर | https://stefansundin.github.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/stefansundin/one-click-screenshot |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "One-click Screenshot", "version": "0.0.4", "description": "Take screenshots of entire websites. Alt+Shift+S is the default shortcut (Option+Shift+S on Mac).", "homepage_url": "https:\/\/github.com\/stefansundin\/one-click-screenshot", "author": "Stefan Sundin", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "One-click Screenshot", "default_popup": "popup.html" }, "commands": { "take-screenshot": { "suggested_key": { "default": "Alt+Shift+S" }, "description": "Take a screenshot" } }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "js\/content_script.js" ], "minimum_chrome_version": "55", "manifest_version": 2 } |