Smooth Academia.edu

Smoothens your Academia.edu experience by disabling annoying features. This is an unofficial add-on.

Smooth Academia.edu란 무엇입니까?

Smooth Academia.edu은(는) https://camilstaps.nl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smoothens your Academia.edu experience by disabling annoying features. This is an unofficial add-on."입니다.

확장 프로그램 스크린샷

screenshot

Smooth Academia.edu 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Academia.edu is omnipresent in some academic fields. Unfortunately, the website is very frustrating in that it keeps pushing you to buy a Premium subscription.

This extension aims to smoothen your Academia.edu experience by removing links to premium features and other annoying habits.

All things that are being disabled can be turned on/off in the add-on settings.

This is an unofficial extension. There is no affiliation with Academia.edu whatsoever.                    

확장 프로그램 기본 정보

이름 Smooth Academia.edu Smooth Academia.edu
ID aeohigfgkmgceofpjhmfmeiembnpobme
공식 URL https://chromewebstore.google.com/detail/smooth-academiaedu/aeohigfgkmgceofpjhmfmeiembnpobme
설명 Smoothens your Academia.edu experience by disabling annoying features. This is an unofficial add-on.
파일 크기 33.24 KB
설치 횟수 642
현재 버전 0.3.6
최근 업데이트 2021-05-19
출시 날짜 2020-03-09
평점 5.00/5 총 1 개의 평점
개발자 https://camilstaps.nl
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/camilstaps/Smooth-Academia-edu
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smooth Academia.edu",
    "short_name": "Smooth A.edu",
    "version": "0.3.6",
    "description": "Smoothens your Academia.edu experience by disabling annoying features. This is an unofficial add-on.",
    "homepage_url": "https:\/\/github.com\/camilstaps\/Smooth-Academia-edu",
    "author": "Camil Staps",
    "icons": {
        "16": "icons\/logo-16.png",
        "48": "icons\/logo-48.png",
        "96": "icons\/logo-96.png",
        "128": "icons\/logo-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.academia.edu\/*"
            ],
            "css": [
                "smooth-academia-edu.css"
            ],
            "js": [
                "smooth-academia-edu.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}