Extension of Our Own

Improved subscription list for Ao3

Extension of Our Own란 무엇입니까?

Extension of Our Own은(는) CactuArt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improved subscription list for Ao3"입니다.

확장 프로그램 스크린샷

screenshot

Extension of Our Own 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}