OctoPermalinker
Fixes broken GitHub links.
OctoPermalinker क्या है?
OctoPermalinker Joseph Frazier द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fixes broken GitHub links."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में OctoPermalinker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
OctoPermalinker is a browser extension that searches GitHub comments/files for links to files on branches, and adds a link to where the branch pointed when the comment/file was made/updated. This helps you avoid following a link that was broken after being posted. For context, here's some discussion about broken GitHub links: https://news.ycombinator.com/item?id=8046710
एक्सटेंशन की मूल जानकारी
नाम | OctoPermalinker |
ID | bcnkgcoohaaaclieohdlkphgfinkgbfm |
आधिकारिक URL | https://chromewebstore.google.com/detail/octopermalinker/bcnkgcoohaaaclieohdlkphgfinkgbfm |
विवरण | Fixes broken GitHub links. |
फ़ाइल का आकार | 373 KB |
स्थापना संख्या | 239 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2017-05-20 |
प्रकाशन तिथि | 2017-05-20 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Joseph Frazier |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/josephfrazier/octopermalinker |
सहायता पृष्ठ URL | https://github.com/josephfrazier/octopermalinker/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoPermalinker", "version": "1.0.0", "manifest_version": 2, "author": "Joseph Frazier", "description": "Fixes broken GitHub links.", "homepage_url": "https:\/\/github.com\/josephfrazier\/octopermalinker", "icons": { "212": "link-icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "app.js" ], "run_at": "document_idle", "all_frames": false } ], "web_accessible_resources": [ "link-icon.png" ], "permissions": [ "storage", "https:\/\/github.com\/", "https:\/\/gist.github.com\/" ] } |