Q Accelerator

Qiitaでの活動を加速させるChrome拡張機能

Q Accelerator란 무엇입니까?

Q Accelerator은(는) tatsuya.nakano에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Qiitaでの活動を加速させるChrome拡張機能"입니다.

확장 프로그램 스크린샷

screenshot

Q Accelerator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        以下の機能を含んでいます。
- ストック数を表示(実験的機能)
- 記事の更新時間を表示
- 行番号を表示
- コピーアイコンを表示
- 言語名を表示
- 自動いいね/自動ストック
- ヘッダーを固定
- 新規投稿時のテンプレート
- 閲覧履歴の検索

全ての機能はON/OFFを切り替え可能です。

本拡張機能はOSSです。
https://github.com/howdy39/q-accelerator                    

확장 프로그램 기본 정보

이름 Q Accelerator Q Accelerator
ID mheleidccioamimekojienbdfclcbaan
공식 URL https://chromewebstore.google.com/detail/q-accelerator/mheleidccioamimekojienbdfclcbaan
설명 Qiitaでの活動を加速させるChrome拡張機能
파일 크기 1.05 MB
설치 횟수 482
현재 버전 2.2.1
최근 업데이트 2019-03-05
출시 날짜 2019-03-05
평점 4.38/5 총 8 개의 평점
개발자 tatsuya.nakano
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/howdy39/q-accelerator
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Q Accelerator",
    "short_name": "QA",
    "description": "Qiita\u3067\u306e\u6d3b\u52d5\u3092\u52a0\u901f\u3055\u305b\u308bChrome\u62e1\u5f35\u6a5f\u80fd",
    "icons": {
        "16": "assets\/images\/qa_icon16.png",
        "48": "assets\/images\/qa_icon48.png",
        "128": "assets\/images\/qa_icon128.png"
    },
    "version": "2.2.1",
    "homepage_url": "https:\/\/github.com\/howdy39\/q-accelerator",
    "background": {
        "persistent": false,
        "page": "background\/background.html"
    },
    "browser_action": {
        "default_popup": "assets\/popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/qiita.com\/*",
                "https:\/\/qiita.com\/*"
            ],
            "js": [
                "content_scripts\/all-content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/qiita.com\/*\/items\/*",
                "https:\/\/qiita.com\/*\/items\/*",
                "http:\/\/qiita.com\/*\/private\/*",
                "https:\/\/qiita.com\/*\/private\/*"
            ],
            "js": [
                "content_scripts\/article-content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/qiita.com\/drafts\/new",
                "https:\/\/qiita.com\/drafts\/new"
            ],
            "js": [
                "content_scripts\/drafts-new-content.js"
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "storage"
    ],
    "options_ui": {
        "page": "assets\/settings.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "assets\/images\/*"
    ]
}