Q Accelerator

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

Cos'è Q Accelerator?

Q Accelerator è un'estensione di Chrome sviluppata da tatsuya.nakano, e la sua funzione principale è "Qiitaでの活動を加速させるChrome拡張機能".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Q Accelerator

Scarica i file di estensione Q Accelerator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

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

Informazioni di Base sull'Estensione

Nome Q Accelerator Q Accelerator
ID mheleidccioamimekojienbdfclcbaan
URL Ufficiale https://chromewebstore.google.com/detail/q-accelerator/mheleidccioamimekojienbdfclcbaan
Descrizione Qiitaでの活動を加速させるChrome拡張機能
Dimensione del File 1.05 MB
Conteggio Installazioni 482
Versione Corrente 2.2.1
Ultimo Aggiornamento 2019-03-05
Data di Pubblicazione 2019-03-05
Valutazione 4.38/5 Totale 8 Valutazioni
Sviluppatore tatsuya.nakano
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/howdy39/q-accelerator
Lingue Supportate 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\/*"
    ]
}