Copy to Gist
Copies selected text to gist and appends the gist url to your clipboard.
Copy to Gist क्या है?
Copy to Gist https://mbejda.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies selected text to gist and appends the gist url to your clipboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy to Gist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Copy to Gist copies selected text to a gist and appends the gist url to your clipboard. The default privacy of the created gist is public, however, It does support the option to create and copy to private gists. Instructions : - Authorize your Github by clicking on the clipboard icon in the browser extension bar. - Select code or text on a page and right click to display context menu. - Click Copy to Gist - A gist will be created in the authorized Github account and its url will be appended to your clipboard
एक्सटेंशन की मूल जानकारी
नाम | Copy to Gist |
ID | lofgjnadojidbnajbnflkfnfmgiipfmc |
आधिकारिक URL | https://chromewebstore.google.com/detail/copy-to-gist/lofgjnadojidbnajbnflkfnfmgiipfmc |
विवरण | Copies selected text to gist and appends the gist url to your clipboard. |
फ़ाइल का आकार | 415 KB |
स्थापना संख्या | 230 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2017-12-19 |
प्रकाशन तिथि | 2017-12-18 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | https://mbejda.com |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://medium.com/@milosbejda/chrome-extension-copy-to-gist-21a6933e9e25 |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.3", "manifest_version": 2, "author": "Milos Bejda", "description": "__MSG_appDescription__", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjr9YckspNl5XVNSOTT1ae8O6oOzZgDeqqKDpxhUapLrrHWaMJSH1lhF8sxe9gFm4zrf5HMboziShwI\/v3oHdN8JOGL55j5V5tI5OohF3Y4ebqqGIRwgqdZVuA0r2Lqy6thMk+X8\/Vc3JQHfhiKL+9\/EAKEPPkZiOYycSUtsgwTQsXtMB7\/OFTY7Ys0w569F\/mASmNw+SQL90H9mzj4SGyIp+XeHJBsXdQpGxAHlKm8G7j4u8Z\/fAMzERpdlnaUyDmnTXWWdyCpR04ucbrqJRTeuqi23ANzStY+Zwv0kQBzTu4\/JpqqSxM+ycxuYjdsZudwXfBDQqnhNa74fnmb8e2wIDAQAB", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/jquery.js", "scripts\/background.js" ] }, "permissions": [ "storage", "tabs", "activeTab", "contextMenus", "identity", "https:\/\/github.com\/*" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "copy2gist", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |