Github Gist logo fixer
Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
Github Gist logo fixer क्या है?
Github Gist logo fixer https://hmemcpy.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Github Gist logo fixer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A tiny bit of JavaScript to have clicking on the top left logo on Github's Gist page take back to github. Solves a personal annoyance of mine, but I hope you'll find it useful as well. Feel free to send me pull requests to improve it!
एक्सटेंशन की मूल जानकारी
नाम | Github Gist logo fixer |
ID | bgkfamnjiedcggijadfmjopnmidnkdad |
आधिकारिक URL | https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad |
विवरण | Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist. |
फ़ाइल का आकार | 4.12 KB |
स्थापना संख्या | 80 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2015-05-17 |
प्रकाशन तिथि | 2015-05-17 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://hmemcpy.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hmemcpy/gisthub |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Gist logo fixer", "description": "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.", "version": "1.1", "permissions": [ "https:\/\/gist.github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/gist.github.com\/*" ], "js": [ "github-inject.js" ], "run_at": "document_end" } ] } |