Unofficial Genius Search
Unofficial Genius Search
Unofficial Genius Search क्या है?
Unofficial Genius Search Steven Galarza द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unofficial Genius Search"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Unofficial Genius Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is an UNOFFICIAL Genius Search browser extension for Chrome that instantly redirects you to a webpage on the official Genius website that contains annotations for the content you are viewing. The extension is basic and only works for music on Youtube and Soundcloud. Please note that I do not work for Genius or am affiliated with them in any way. I simply created this to make my life easier. I do not collect any data or anything, and if you do not believe me, then check out the code here https://github.com/stevengalarza/UnofficialGeniusSearch
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ignebclglbamlknbifbdkodjgoegknpe |
आधिकारिक URL | https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe |
विवरण | Unofficial Genius Search |
फ़ाइल का आकार | 24.26 KB |
स्थापना संख्या | 36 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2014-08-02 |
प्रकाशन तिथि | 2014-08-02 |
रेटिंग | 3.00/5 कुल 7 रेटिंग्स |
डेवलपर | Steven Galarza |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "genius.js" ] }, "browser_action": { "default_icon": "logo.png" }, "description": "Unofficial Genius Search", "icons": { "128": "logo.png" }, "name": "Unofficial Genius Search", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.soundcloud.com\/*", "http:\/\/*.soundcloud.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "webNavigation", "activeTab", "http:\/\/ajax.googleapis.com\/ajax\/services\/search\/*" ], "version": "1.0", "manifest_version": 2 } |