Skip to content

Instantly share code, notes, and snippets.

@khsk
Last active September 15, 2015 07:58
Show Gist options
  • Save khsk/05bd8fc3abbdb209f9cc to your computer and use it in GitHub Desktop.
Save khsk/05bd8fc3abbdb209f9cc to your computer and use it in GitHub Desktop.
FirefoxでのQiitaタグ補完機能動作 + オートコンプリートを無効にするユーザースクリプト ref: http://qiita.com/khsk/items/9c8d45e17fe79d2f177e
// ==UserScript==
// @name Qiita tag disable autocomplete
// @namespace khsk
// @description タグの入力時にブラウザのオートコンプリート機能を無効化する
// @include http://qiita.com/drafts/*
// @version 1
// @grant none
// ==/UserScript==
document.getElementById('draft_item_tag_notation').autocomplete = 'off'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment