Reddit Extras
A boilerplate to chrome extension with webpack
Reddit Extras क्या है?
Reddit Extras Roadwork द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A boilerplate to chrome extension with webpack"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reddit Extras एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This plugin is created for the reddit.com website to support extra feature's commonly requested by the reddit community. Currently the focus is put on multireddits with further features implemented as per comments. Logo credits: https://reddit.com
एक्सटेंशन की मूल जानकारी
नाम | Reddit Extras |
ID | hpbbgnajgjidpoccddnecafkbnjgpmeb |
आधिकारिक URL | https://chromewebstore.google.com/detail/reddit-extras/hpbbgnajgjidpoccddnecafkbnjgpmeb |
विवरण | A boilerplate to chrome extension with webpack |
फ़ाइल का आकार | 1.93 MB |
स्थापना संख्या | 111 |
वर्तमान संस्करण | 0.1 |
अंतिम अपडेट | 2019-04-13 |
प्रकाशन तिथि | 2019-04-13 |
रेटिंग | 4.33/5 कुल 3 रेटिंग्स |
डेवलपर | Roadwork |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://scraper.ai/privacy-extension |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A boilerplate to chrome extension with webpack", "version": "0.1", "name": "Reddit Extras", "options_page": "options.html", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.reddit.com\/*" ], "js": [ "content.bundle.js" ] } ], "browser_action": { "default_icon": "128.png" }, "icons": { "128": "128.png" }, "manifest_version": 2, "permissions": [ "activeTab", "storage", "notifications", "*:\/\/*.reddit.com\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com https:\/\/ssl.google-analytics.com; object-src 'self'", "oauth2": { "client_id": "809763600343-lil0ldk1scn8o7p1v97ncs3jhe6vrlhs.apps.googleusercontent.com", "scopes": [] } } |