Super Linkomanija
Extension which improves UI/UX experience in Linkomanija.net website
Super Linkomanija क्या है?
Super Linkomanija Tautvydas Derzinskas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension which improves UI/UX experience in Linkomanija.net website"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Super Linkomanija एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Super Linkomanija is a browser extension which extends old Lithuanian torrent website http://www.linkomanija.net user experience. Features: - Preview torrents - Torrent view modes (list/gird) - Related torrents - Comment formatting - Homepage redirection - Quick back to top - Viewed, downloaded, commented torrents history
एक्सटेंशन की मूल जानकारी
नाम | Super Linkomanija |
ID | gmdhkalbljdblbogfladannflinppnji |
आधिकारिक URL | https://chromewebstore.google.com/detail/super-linkomanija/gmdhkalbljdblbogfladannflinppnji |
विवरण | Extension which improves UI/UX experience in Linkomanija.net website |
फ़ाइल का आकार | 511 KB |
स्थापना संख्या | 73 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2019-03-25 |
प्रकाशन तिथि | 2019-03-25 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | Tautvydas Derzinskas |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/SlimDogs/super-linkomanija |
समर्थित भाषाएँ | en,lt |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "short_name": "sl", "description": "__MSG_appDesc__", "default_locale": "lt", "version": "1.1.0", "author": "Tautvydas Derzinskas", "homepage_url": "https:\/\/github.com\/SlimDogs\/super-linkomanija", "browser_action": { "default_icon": { "19": "icons\/icon_19x19.png", "38": "icons\/icon_38x38.png" }, "default_popup": "popup.html" }, "icons": { "16": "icons\/icon_16x16.png", "48": "icons\/icon_48x48.png", "96": "icons\/icon_96x96.png", "128": "icons\/icon_128x128.png" }, "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.linkomanija.net\/*" ], "css": [], "js": [ "content.bundle.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/*.linkomanija.net\/details*" ], "css": [], "js": [ "sceditor.min.js", "bbcode.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "*:\/\/*.linkomanija.net\/browse.php*" ], "css": [ "tippy.css" ], "js": [ "tippy.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "bbcode.bundle.js" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "tabs", "storage" ] } |