Reddit Music Helper
This extension will open all SoundCloud links (and others, dependent on how you set the options) anywhere on Reddit (like r/trap).
Τι είναι το Reddit Music Helper;
Το Reddit Music Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This extension will open all SoundCloud links (and others, dependent on how you set the options) anywhere on Reddit (like r/trap).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Reddit Music Helper
Λήψη αρχείων επέκτασης Reddit Music Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will open all SoundCloud links (and others, dependent on how you set the options) on Reddit and any subreddit (like r/trap). Features: The extension can automatically open YouTube links (and also automatically pause them!) in addition to Soundcloud You can choose whether to open links from other sites directly, open the comments for that link, or do nothing Choose whether to open links you've already visited or not Choose whether or not to open NSFW links Decide how many links you want to open at once. You are free to choose your own keyboard shortcut to open up the tabs. Changelog: 1.0.0 : Initial Adaptation from Nick Russler's F7U12 Link Opener 1.1.0 : Bug Fix - No longer pauses all YouTube videos. Permissions: Tabs: This Permission is needed to open new Tabs. History: This Permission is needed to check if you already visited a link. UnlimitedStorage: This Permission is needed to use local storage to save your options. "*.reddit.com/*", "*.youtube.com/*", etc.: These permissions are needed to run scripts inside of tabs set to these url's (for auto-pausing YouTube videos and such). Source: https://github.com/cjevning/Reddit-Music-Helper Credits to nickrussler for the code of his "F7U12 Link Opener" Extension. Credits to leblonk for the code of his "Open All Selected Links" Extension.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Reddit Music Helper |
ID | mnbgdndhhllkigflbengdghmhcinmjcf |
Επίσημο URL | https://chromewebstore.google.com/detail/reddit-music-helper/mnbgdndhhllkigflbengdghmhcinmjcf |
Περιγραφή | This extension will open all SoundCloud links (and others, dependent on how you set the options) anywhere on Reddit (like r/trap). |
Μέγεθος Αρχείου | 69.85 KB |
Αριθμός Εγκαταστάσεων | 22 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2014-09-22 |
Ημερομηνία Δημοσίευσης | 2014-09-22 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/cjevning/Reddit-Music-Helper |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "manifest_version": 2, "background": { "page": "background.html" }, "browser_action": { "default_icon": "img\/icon19.png", "default_title": "Reddit Music Helper" }, "content_scripts": [ { "js": [ "jquery-1.6.4.min.js", "shortcut.js", "contentScript.js" ], "matches": [ "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*" ], "run_at": "document_start" } ], "description": "This extension will open all SoundCloud links (and others, dependent on how you set the options) anywhere on Reddit (like r\/trap).", "icons": { "128": "img\/icon128.png" }, "name": "Reddit Music Helper", "options_page": "options.html", "permissions": [ "tabs", "history", "unlimitedStorage", "http:\/\/*.reddit.com\/*", "https:\/\/*.reddit.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*", "http:\/\/*.youtu.be\/*", "https:\/\/*.youtu.be\/*" ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.0" } |