ScrapScripts

Unofficial browser extension for Scrapbox

What is ScrapScripts?

ScrapScripts is a Chrome extension developed by http://daiiz.hatenablog.com, and its main feature is "Unofficial browser extension for Scrapbox".

Extension Screenshots

screenshot
screenshot
screenshot

Download ScrapScripts Extension CRX File

Download ScrapScripts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name ScrapScripts ScrapScripts
ID pmpjhaeadhebhjmninnnpikcdogmjgok
Official URL https://chrome.google.com/webstore/detail/scrapscripts/pmpjhaeadhebhjmninnnpikcdogmjgok
Description Unofficial browser extension for Scrapbox
File Size 141 KB
Installation Count 974
Current Version 1.2.1
Last Updated 2018-07-16
Publish Date 2018-07-14
Rating 5.00/5 Total 2 Ratings
Developer http://daiiz.hatenablog.com
Email [email protected]
Payment Type free
Extension Website https://scrapbox.io/daiiz/ScrapScripts
Help Page URL https://scrapbox.io/customize/ScrapScripts
Privacy Policy Page URL http://daiiz-apps.appspot.com/policy
Supported Languages 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"
}