如何在 cloudant 仪表板内更轻松地切换 'Include Docs'?

how to toggle 'Include Docs' more easily inside the cloudant dashboard?

目前,只需单击几下即可切换 Cloudant 仪表板内的 'include_docs' 标志。如果经常这样做,可能会有点耗时。

我怎样才能加快这个过程?

我创建了一个 javascript bookmarklet:

javascript:(function(){
   if(document.location.toString().contains('include_docs=true')){
      document.location=document.location.toString().replace('include_docs=true', '')
   } else {
      if (document.location.toString.contains('?') {
          document.location+='&include_docs=true'
      } else {
          document.location+='?include_docs=true'
      }
   }
}())

当我想打开或关闭 'include_docs' 时,只需在书签工具栏中单击此书签即可。

注意:我只在 firefox 上测试过。