Extension of Our Own

Improved subscription list for Ao3

Τι είναι το Extension of Our Own;

Το Extension of Our Own είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον CactuArt, και η κύρια λειτουργία του είναι "Improved subscription list for Ao3".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Extension of Our Own

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

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

                        If you, too, love to use Archive of Our Own often, you may have accumulated quite a few fanfic subscriptions. If so, you might also have found, Ao3's subscription page to be pretty unhelpful past a certain point. Well, this extension is here to help. 


Extension of Our Own will add several83 improvements to Ao3's subscription page:
・ Jump directly to the most recent chapter of a subscription, instead of the first one.
・ Filter based on Ongoing/Complete status.
・ Sort based on Title, Author, Fandom or Last Updated.
・ See fandom, chapter count and when a subscription was last updated.
・ Easily tell which subscriptions are also bookmarked.


I hope to continue improving Eo3 throughout the beta and add additional features in the future.                    

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

Όνομα Extension of Our Own Extension of Our Own
ID jpnkcocpogjbiihgcdionhcabgakcdgo
Επίσημο URL https://chrome.google.com/webstore/detail/extension-of-our-own/jpnkcocpogjbiihgcdionhcabgakcdgo
Περιγραφή Improved subscription list for Ao3
Μέγεθος Αρχείου 312 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 0.1.4
Τελευταία Ενημέρωση 2017-09-09
Ημερομηνία Δημοσίευσης 2017-09-09
Αξιολόγηση 3.68/5 Συνολικά 22 Αξιολογήσεις
Προγραμματιστής CactuArt
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extension of Our Own",
    "short_name": "Eo3",
    "description": "Improved subscription list for Ao3",
    "version": "0.1.4",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "Eo3_icon.png",
        "default_popup": "Eo3pop.html",
        "default_title": "Subscriptions Styler"
    },
    "icons": {
        "128": "Eo3_icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/archiveofourown.org\/users\/*\/subscriptions*"
            ],
            "css": [
                "substyle.css",
                "jquery-ui.css"
            ],
            "js": [
                "jquery.min.js",
                "subsort.js",
                "jquery-ui.js",
                "options.js",
                "list.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "ajax-loader.gif",
        "reversi-loader.gif",
        "ribbon_reverse.png",
        "reversi-ribbon_reverse.png",
        "bookmarkscreenshot.png",
        "list.js"
    ],
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}