タグ

Firefoxに関するled-centipedeのブックマーク (9)

  • / - mozsearch

    Files to exclude from ESLint. Please DO NOT add more third party files to this file. They should be added to tools/rewriting/ThirdPartyPaths.txt instead. Please also DO NOT add generated files that are for some reason checked into source - add them to tools/rewriting/Generated.txt instead. This file should only be used for exclusions where we have: - preprocessed files - intentionally invalid file

  • Mozilla ソースコードのディレクトリ構造 | MDN

    この記事の内容は古くなっています。例えば 'extensions' の項では、既に他のサブディレクトリへ移動されたフォルダが多数列挙されています。コードの移動先を調べるには DXR や searchfox が便利です。コードによっては mozilla-central から削除されている場合もあります。 Mozilla ファミリ(Firefox や Thunderbird、その他)に関係するすべてのプロジェクトにおいては、ソースコードがひとつのソースツリーにまとめられています。ツリーにはソースコードのみならず、サポートしているプラットフォーム(LinuxWindows、OS X など)で各プロジェクトをビルドするのに必要なコードも含まれています。どのディレクトリにどのファイルが含まれているのか、この記事で概要を説明します。 Mozilla のソースコードを確認するには、コードをダウンロ

    Mozilla ソースコードのディレクトリ構造 | MDN
  • Embedding Mozilla | MDN

    Gecko は、Mozilla アプリケーションに使われているのと同じ技術をサードパーティーの開発者も利用できるようにしています。これは、サードパーティーのアプリケーションに Web ブラウザを組み込むことや、ネットワーク経由でチャネルやストリームを開くこと、DOM を操作することなどが可能になるということを意味します。また、新しいアプリケーションをクローム技術を利用して構築することも可能です。 ドキュメント Gecko 組み込みの基礎 Gecko レンダリングエンジンの組み込み入門。 組み込み Mozilla の FAQ Mozilla の組み込みについてよく聞かれる様々な質問のまとめです。 Mozilla 組み込み API の概要 Mozilla 組み込み API の入門。 エディタの組み込み このドキュメントでは、エディタの組み込み可能性の現状、現存する実装の問題、私たちが取り組まな

    Embedding Mozilla | MDN
  • Firefoxの独自ビルドの作成方法(2015年版) - 2015-09-04 - ククログ

    概要 弊社はMozilla FirefoxをはじめとしたMozilla製品の技術サポートを提供していますが、希に、自社製品の一部としてFirefoxを顧客向けに配布したいというご相談を頂くことがあります。 結論から先に言うと、このような場合にはFirefoxをソースから独自にビルドする必要があります。 この記事では、Windows上でのFirefox 38.2.1ESRのローカライズ済み(日語版)インストーラを作成するまでの手順を紹介します。 2022年8月12日追記:記事よりも新しい情報が2017年版の同趣旨の記事にありますので、基的にはそちらをご参照下さい。この記事はアーカイブ目的で保存された物です。 背景・動機 弊社ではFx Meta Installerというソフトウェアを開発・公開しており、これを使うと、「自組織向けにカスタマイズされたFirefox」と呼べるひとそろいの環境

    Firefoxの独自ビルドの作成方法(2015年版) - 2015-09-04 - ククログ
  • Windows ビルド環境の準備 - Mozilla | MDN

    この記事は翻訳が完了していません。 この記事の翻訳にご協力ください Windows 上での Firefox ビルド 世界で最も有名な OS 上で動作し、世界で最も良いブラウザのビルドを作るお手伝いをしていただき、ありがとうございます。このドキュメントはローカルマシン上で自身のハックをしたり、ビルドのセットアップの手助けとなります。 セットアップは難しいことではありません。しかし、多くのファイルをダウンロードする必要があるため多少時間がかかります。これは 10 ~ 15 分かかり、1 ~ 2時間になる場合があります。 詳細はこのページの最後に記載しています。しかし、このクイックスタートガイドではあなたは以下のことをする必要があります。 始めるために Windows 版の Firefox をビルドするためには、64 ビット版の Windows 7 以上、40 GB の空きスペースがあるマシンが

    Windows ビルド環境の準備 - Mozilla | MDN
  • How to start Firefox with with specific profile Selenium Python geckodriver

    Here is my code: profile = webdriver.FirefoxProfile('C:\\Users\\Administrator\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\kvycjolb.Prdel') driver = webdriver.Firefox(profile) Im not getting any error and firefox starts, but it just does not load with this profile: I have tried changing / to // etc.. but no luck. This also does not work: from selenium import webdriver from selenium.webdriver.fir

    How to start Firefox with with specific profile Selenium Python geckodriver
  • FirefoxDriver Tips - CODESCRIBBLE

    FirefoxDriverの使い方に関する少量のメモです。 Firefoxの設定を変更するFirefoxでは、ブラウザの設定やアドオンのデータなどは全てプロファイルに紐付けられています。プロファイルのデータは特定のディレクトリに置かれており、Firefoxの起動時に読み込まれます。 ただし、FirefoxDriverを用いてFirefoxを起動した場合は既存のプロファイルは読み込まれません。常に新しいプロファイルが作成され、終了時に破棄されます。そのため、設定などはほとんど初期状態のままになります。起動時に独自の設定を反映させたい場合、Firefoxのプロファイルを扱うためのクラスが用意されているので、それを使います。 FirefoxProfile profile = new FirefoxProfile(); profile.setPreference("general.useragen

    FirefoxDriver Tips - CODESCRIBBLE
  • Setting selenium to use custom profile, but it keeps opening with default

    I am trying to use python and selenium to automate some tasks in firefox. When I download a file, that pop up comes up asking if you want to open or save, and a check box for do this every time with this kind of file. I have found that check box does not work unless you install the add on Web Page Fixer. I have that installed normally, but when I use python + selenium it uses a profile with no add

    Setting selenium to use custom profile, but it keeps opening with default
  • Get the default Firefox profile directory from bash

  • 1