SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

Τι είναι το SoundEnhace;

Το SoundEnhace είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michael Genovese, και η κύρια λειτουργία του είναι "Enhances the UI of SoundCloud with a popularity statistic".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SoundEnhace

Λήψη αρχείων επέκτασης SoundEnhace σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Enhance the user interface of SoundCloud with an additional sound statistic. Using data about each sound, such as plays, likes, reposts, and comments, a popularity statistic is calculated and added to the interface.

With the popularity statistic, you can quickly scan your stream to identify the winners.

Update 1.2.2:
-Bug Fixes                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SoundEnhace SoundEnhace
ID ghhjpnmejhccfeknjbcjcnkogappmlno
Επίσημο URL https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno
Περιγραφή Enhances the UI of SoundCloud with a popularity statistic
Μέγεθος Αρχείου 90.31 KB
Αριθμός Εγκαταστάσεων 120
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2016-01-16
Ημερομηνία Δημοσίευσης 2016-01-16
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Michael Genovese
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://michaelrgenovese.com
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SoundEnhace",
    "version": "1.2.2",
    "description": "Enhances the UI of SoundCloud with a popularity statistic",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/soundcloud.com\/*",
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "mutation_summary.js",
                "enhance_content_script.js"
            ],
            "css": [
                "enhance.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "declarativeContent",
        "webNavigation",
        "http:\/\/soundcloud.com\/*",
        "https:\/\/soundcloud.com\/*"
    ],
    "page_action": {
        "default_name": "SoundEnhace",
        "default_icon": "icon-19.png"
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "web_accessible_resources": [
        "*.png"
    ],
    "manifest_version": 2
}