ScrapScripts

Unofficial browser extension for Scrapbox

Was ist ScrapScripts?

ScrapScripts ist eine Chrome-Erweiterung, die von http://daiiz.hatenablog.com entwickelt wurde, und ihr Hauptmerkmal ist "Unofficial browser extension for Scrapbox".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ScrapScripts-Erweiterungs-CRX-Datei herunterladen

Laden Sie ScrapScripts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Scrapboxをもっと便利に使う、楽しく遊ぶ、自由に拡張するための非公式ブラウザ拡張機能です。

これはScrapbox (https://scrapbox.io/product) ユーザー向けの拡張機能です。

搭載機能
- 関連ページを吹き出し表示する
  - ページリンクをホバーすると、そのリンクに関連するページがその場で表示されます
  - 関連ページの内容はリンクに関するScrapboxの2ホップリンクです
- リンク先ページのテキストを表示する
  - ページリンクをホバーすると、リンクの遷移先ページの内容がその場でプレビュー表示されます
- Scrapboxのアイコンをボタンとして使う
  - Scrapboxのアイコン記法を拡張するアイデアです
  - アイコンをクリックした際にユーザーが設定した処理を実行できます
- GyazoプレビューページでScrapboxのページを読む
  - Gyazo (https://gyazo.com/) の画像ページでも関連するScrapboxを読めるようになります
- URLペースト時にページタイトルを補う
  - Ctrl+v等でペーストを実行した際、clipboardで保持しているテキストがURLであれば、ページタイトルを補って`[URL title]`の形式で貼り付けます

機能の有効化
- 搭載機能のうち、各ユーザーで必要な機能のみを有効化できます。
- 有効化する機能の指定やオプション項目の設定は、ScrapboxのUserScriptを用います。
- 設定の具体的な記述方法は「アイテムのウェブサイトへのリンク」をご覧ください。                    

Grundlegende Informationen zur Erweiterung

Name ScrapScripts ScrapScripts
ID pmpjhaeadhebhjmninnnpikcdogmjgok
Offizielle URL https://chrome.google.com/webstore/detail/scrapscripts/pmpjhaeadhebhjmninnnpikcdogmjgok
Beschreibung Unofficial browser extension for Scrapbox
Dateigröße 141 KB
Installationsanzahl 974
Aktuelle Version 1.2.1
Letztes Update 2018-07-16
Veröffentlichungsdatum 2018-07-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://daiiz.hatenablog.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://scrapbox.io/daiiz/ScrapScripts
Hilfeseite URL https://scrapbox.io/customize/ScrapScripts
URL der Datenschutzrichtlinien-Seite http://daiiz-apps.appspot.com/policy
Unterstützte Sprachen ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src * data: blob:;",
    "options_ui": {
        "page": "options.html"
    },
    "description": "Unofficial browser extension for Scrapbox",
    "icons": {
        "128": "icon.png",
        "48": "icon.png",
        "16": "icon.png"
    },
    "manifest_version": 2,
    "name": "ScrapScripts",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/bundle.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/scrapbox.io\/*"
            ],
            "css": [
                "content_scripts_css\/scrapbox-io\/main.css"
            ],
            "js": [
                "build\/scrapbox-io.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/gyazo.com\/*"
            ],
            "css": [
                "content_scripts_css\/scrapbox-io\/main.css"
            ],
            "js": [
                "build\/gyazo-com.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "clipboardRead",
        ""
    ],
    "version": "1.2.1"
}