Fetlife+

Various improvements to FetLife's user interface...

Fetlife+란 무엇입니까?

Fetlife+은(는) Rycochet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Various improvements to FetLife's user interface..."입니다.

확장 프로그램 스크린샷

screenshot

Fetlife+ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Improves the FetLife user interface.

FetLife+ group - https://fetlife.com/groups/116814 - no need to join or post.

All features have options to control them, use only what you want!

* Add a Badge showing notification counts.
* Notification popups on messages etc.
* Bookmark system within FetLife.
* Highlight new feed items.
* Hide feed types on a per-user basis.
* Graphical navigation icons.
* Fix K&P navigation bar.
* Choose default target of the K&P link.
* Choose default target of the Main Feed link.
* Block all content relating to blocked users (including comments and mentions).
* Themes (well, a single bad one - please help out, I'm bad at that part!!)
* NSFW mode to blur avatars
* Event pages can create Google Calendar events

This is a work in progress, so will be updated over time, please report any bugs to fix and ideas for me to add...

Please support FetLife too, which gives a full "gag" ability among other things (this will never replace that).                    

확장 프로그램 기본 정보

이름 Fetlife+ Fetlife+
ID damilhebpjeefbhjdhekjeddlkhfefej
공식 URL https://chrome.google.com/webstore/detail/fetlife+/damilhebpjeefbhjdhekjeddlkhfefej
설명 Various improvements to FetLife's user interface...
파일 크기 89.49 KB
설치 횟수 582
현재 버전 2.1.2
최근 업데이트 2016-09-22
출시 날짜 2016-09-22
평점 3.91/5 총 11 개의 평점
개발자 Rycochet
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Rycochet/Chrome
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "fl+",
    "version": "2.1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "40",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/fetlife+\/damilhebpjeefbhjdhekjeddlkhfefej",
    "author": "Ryc O'Chet ",
    "permissions": [
        "alarms",
        "cookies",
        "notifications",
        "storage",
        "tabs",
        "https:\/\/fetlife.com\/"
    ],
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "common.js",
                "bookmarks.js",
                "navigation.js",
                "theme.js"
            ],
            "css": [
                "bookmarks.css"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/fetlife.com\/*"
            ]
        },
        {
            "js": [
                "jquery.color.js",
                "home.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/fetlife.com\/home"
            ]
        },
        {
            "js": [
                "users.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/fetlife.com\/users\/*"
            ]
        },
        {
            "js": [
                "comment.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/fetlife.com\/groups\/*\/group_posts\/*",
                "https:\/\/fetlife.com\/users\/*"
            ]
        },
        {
            "js": [
                "event.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/fetlife.com\/events\/*"
            ]
        }
    ],
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": "icon48.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "themes\/*.css",
        "google_calendar.png"
    ]
}