Code Snip
Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.
Code Snip क्या है?
Code Snip jennifer.k.tam द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Code Snip एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Copy code from stackoverflow.com, github.com, and askubuntu.com to your clipboard, expediting the time it takes you to copy and test code. Code Snip is a productivity tool that allows you to copy source code to your clipboard with the click of a button. Say goodbye to the days of manually highlighting desired code and right clicking to copy and paste or using your pressing CTRL + C and CTRL + V. Code Snip will copy code for you and the best part is that it's free! Download it today at the Chrome Store.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | loeopfggphfjeegjidkjbogidpbapold |
आधिकारिक URL | https://chrome.google.com/webstore/detail/code-snip/loeopfggphfjeegjidkjbogidpbapold |
विवरण | Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues. |
फ़ाइल का आकार | 31.89 KB |
स्थापना संख्या | 399 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2017-08-05 |
प्रकाशन तिथि | 2017-08-05 |
डेवलपर | jennifer.k.tam |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code Snip", "version": "1.0", "manifest_version": 2, "description": "Copy code from Stack Overflow, Github, and AskUbuntu's websites expediting the time it takes you to debug issues.", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Code Snip", "default_popup": "overlay.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "css": [ "css\/stackOverflow.css" ], "js": [ "js\/stackOverflow.js", "js\/contentscript.js", "js\/copy-to-clipboard.js" ], "matches": [ "https:\/\/stackoverflow.com\/*" ] }, { "css": [ "css\/github.css" ], "js": [ "js\/github.js", "js\/contentscript.js", "js\/copy-to-clipboard.js" ], "matches": [ "https:\/\/github.com\/*" ] }, { "css": [ "css\/ubuntu.css" ], "js": [ "js\/ubuntu.js", "js\/contentscript.js", "js\/copy-to-clipboard.js" ], "matches": [ "https:\/\/askubuntu.com\/*" ] } ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'" } |