Better Online Dating

Simply adds distance and duration to profiles and quick-matching for both OKCupid and Plenty-Of-Fish.

Τι είναι το Better Online Dating;

Το Better Online Dating είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://neoeliteconsulting.com, και η κύρια λειτουργία του είναι "Simply adds distance and duration to profiles and quick-matching for both OKCupid and Plenty-Of-Fish.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension was created due to my frustration with the high-rate of which I was matched with people too far away for my busy schedule. It has provided much assistance to me and I'm making it public even though it's very limited in functionality in hopes it may aid other people with this exact situation.

I may extend it's functionality as I find other desired improvements or kill the  entire project once these sites enable more rigid filtering.

Feel free to send pull requests or request new features. Who knows, maybe it's bugging me too! :-)                    

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

Όνομα Better Online Dating Better Online Dating
ID knikjgmbfeonhbpijnhicdnanmeffaen
Επίσημο URL https://chromewebstore.google.com/detail/better-online-dating/knikjgmbfeonhbpijnhicdnanmeffaen
Περιγραφή Simply adds distance and duration to profiles and quick-matching for both OKCupid and Plenty-Of-Fish.
Μέγεθος Αρχείου 179 KB
Αριθμός Εγκαταστάσεων 71
Τρέχουσα Έκδοση 0.6.0
Τελευταία Ενημέρωση 2018-08-30
Ημερομηνία Δημοσίευσης 2018-08-29
Προγραμματιστής https://neoeliteconsulting.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Online Dating",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Simply adds distance and duration to profiles and quick-matching for both OKCupid and Plenty-Of-Fish.",
    "homepage_url": "https:\/\/bitbucket.org\/DaveTheAve\/better-online-dating",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "19": "images\/icons\/icon19.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": "images\/icons\/icon48.png",
        "default_title": "Better Online Dating"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "https:\/\/www.pof.com\/*",
        "https:\/\/www.okcupid.com\/*"
    ],
    "web_accessible_resources": [
        "images\/*",
        "src\/options_custom\/index.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.pof.com\/*"
            ],
            "css": [
                "src\/inject\/services\/pof\/dating_service.css"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/services\/pof\/dating_service.js",
                "src\/inject\/inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.okcupid.com\/*"
            ],
            "css": [
                "src\/inject\/services\/okcupid\/dating_service.css"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/services\/okcupid\/dating_service.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}