ScrapScripts

Unofficial browser extension for Scrapbox

Wat is ScrapScripts?

ScrapScripts is een Chrome-extensie ontwikkeld door http://daiiz.hatenablog.com, en de belangrijkste functie is "Unofficial browser extension for Scrapbox".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie ScrapScripts

Download ScrapScripts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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を用います。
- 設定の具体的な記述方法は「アイテムのウェブサイトへのリンク」をご覧ください。                    

Basisinformatie over de Extensie

Naam ScrapScripts ScrapScripts
ID pmpjhaeadhebhjmninnnpikcdogmjgok
Officiële URL https://chrome.google.com/webstore/detail/scrapscripts/pmpjhaeadhebhjmninnnpikcdogmjgok
Beschrijving Unofficial browser extension for Scrapbox
Bestandsgrootte 141 KB
Aantal Installaties 974
Huidige Versie 1.2.1
Laatst Bijgewerkt 2018-07-16
Publicatiedatum 2018-07-14
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar http://daiiz.hatenablog.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://scrapbox.io/daiiz/ScrapScripts
Help Pagina-URL https://scrapbox.io/customize/ScrapScripts
URL van de Privacybeleid Pagina http://daiiz-apps.appspot.com/policy
Ondersteunde Talen 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"
}